// source --> http://xn--c1aisdbajmnqa.xn--p1ai/wp-includes/js/wp-embed.min.js?ver=4.9.25 !function(d,l){"use strict";var e=!1,n=!1;if(l.querySelector)if(d.addEventListener)e=!0;if(d.wp=d.wp||{},!d.wp.receiveEmbedMessage)if(d.wp.receiveEmbedMessage=function(e){var t=e.data;if(t)if(t.secret||t.message||t.value)if(!/[^a-zA-Z0-9]/.test(t.secret)){for(var r,i,a,s=l.querySelectorAll('iframe[data-secret="'+t.secret+'"]'),n=l.querySelectorAll('blockquote[data-secret="'+t.secret+'"]'),o=new RegExp("^https?:$","i"),c=0;c http://xn--c1aisdbajmnqa.xn--p1ai/wp-content/themes/rttheme7/js/calculator.js $(function() { $("#slider-range-max").slider({ range: "max", min: 2, max: 20, value: 2, slide: function(event, ui) { $("#amount").val(ui.value); calc(); } }); $("#amount").val($("#slider-range-max").slider("value")); }); $(function() { $("#slider-range-max2").slider({ range: "max", min: 10, max: 200, value: 10, slide: function(event, ui) { $("#amount2").val(ui.value); calc(); } }); $("#amount2").val($("#slider-range-max2").slider("value")); }); function calc(par) { type = document.cl_form.type.value; amount = document.cl_form.amount.value; amount2 = document.cl_form.amount2.value; //var summ; summ = Number(type) * (Number(amount) + Number(amount2))*10; document.cl_form.summ.value = summ; document.getElementById("typetd").innerHTML = type; document.getElementById("amounttd").innerHTML = amount; document.getElementById("amount2td").innerHTML = amount2; document.getElementById("summ").innerHTML = summ; return false; }; // source --> http://xn--c1aisdbajmnqa.xn--p1ai/wp-content/themes/rttheme7/js/jquery.cycle.all.min.js /* * jQuery Cycle Plugin (with Transition Definitions) * Examples and documentation at: http://jquery.malsup.com/cycle/ * Copyright (c) 2007-2009 M. Alsup * Version: 2.72 (09-SEP-2009) * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html * Requires: jQuery v1.2.6 or later * * Originally based on the work of: * 1) Matt Oakes * 2) Torsten Baldes (http://medienfreunde.com/lab/innerfade/) * 3) Benjamin Sterling (http://www.benjaminsterling.com/experiments/jqShuffle/) */ (function($){var ver="2.72";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(opts2.currSlide,opts2.nextSlide,opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,!opts2.rev);},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"stop":cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;if(arg2===true){options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,1);}return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.rev);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}if(opts.random){opts.randomMap=[];for(var i=0;i=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;jmaxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:$el.height();this.cycleW=(opts.fit&&opts.width)?opts.width:$el.width();if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}while((opts.timeout-opts.speed)<250){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){opts.nextSlide=opts.currSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};if(opts.nextSlide!=opts.currSlide){opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after);}else{$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}}}opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}if(opts.pager){$.fn.cycle.updateActivePagerLink(opts.pager,opts.currSlide);}}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(curr,next,opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide){$(pager).find("a").removeClass("activeSlide").filter("a:eq("+currSlide+")").addClass("activeSlide");};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn(curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}if($.isFunction(opts.prevNextClick)){opts.prevNextClick(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});$.fn.cycle.updateActivePagerLink(opts.pager,opts.startingSlide);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);}else{a=''+(i+1)+"";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone);});$a=$(arr);}else{$a.appendTo($p);}}$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if($.isFunction(opts.pagerClick)){opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlidel?c-l:opts.slideCount-l;}else{hops=c=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,prevNextEvent:"click",pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250};})(jQuery); /* * jQuery Cycle Plugin Transition Definitions * This script is a plugin for the jQuery Cycle Plugin * Examples and documentation at: http://malsup.com/jquery/cycle/ * Copyright (c) 2007-2008 M. Alsup * Version: 2.72 * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html */ (function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i http://xn--c1aisdbajmnqa.xn--p1ai/wp-content/themes/rttheme7/js/jquery.easing.1.1.1.js /* * jQuery Easing v1.1.1 - http://gsgd.co.uk/sandbox/jquery.easing.php * * Uses the built in easing capabilities added in jQuery 1.1 * to offer multiple easing options * * Copyright (c) 2007 George Smith * Licensed under the MIT License: * http://www.opensource.org/licenses/mit-license.php */ jQuery.extend({ easing: { easein: function(x, t, b, c, d) { return c*(t/=d)*t + b; // in }, easeinout: function(x, t, b, c, d) { if (t < d/2) return 2*c*t*t/(d*d) + b; var ts = t - d/2; return -2*c*ts*ts/(d*d) + 2*c*ts/d + c/2 + b; }, easeout: function(x, t, b, c, d) { return -c*t*t/(d*d) + 2*c*t/d + b; }, expoin: function(x, t, b, c, d) { var flip = 1; if (c < 0) { flip *= -1; c *= -1; } return flip * (Math.exp(Math.log(c)/d * t)) + b; }, expoout: function(x, t, b, c, d) { var flip = 1; if (c < 0) { flip *= -1; c *= -1; } return flip * (-Math.exp(-Math.log(c)/d * (t-d)) + c + 1) + b; }, expoinout: function(x, t, b, c, d) { var flip = 1; if (c < 0) { flip *= -1; c *= -1; } if (t < d/2) return flip * (Math.exp(Math.log(c/2)/(d/2) * t)) + b; return flip * (-Math.exp(-2*Math.log(c/2)/d * (t-d)) + c + 1) + b; }, bouncein: function(x, t, b, c, d) { return c - jQuery.easing['bounceout'](x, d-t, 0, c, d) + b; }, bounceout: function(x, t, b, c, d) { if ((t/=d) < (1/2.75)) { return c*(7.5625*t*t) + b; } else if (t < (2/2.75)) { return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b; } else if (t < (2.5/2.75)) { return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b; } else { return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b; } }, bounceinout: function(x, t, b, c, d) { if (t < d/2) return jQuery.easing['bouncein'] (x, t*2, 0, c, d) * .5 + b; return jQuery.easing['bounceout'] (x, t*2-d,0, c, d) * .5 + c*.5 + b; }, elasin: function(x, t, b, c, d) { var s=1.70158;var p=0;var a=c; if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3; if (a < Math.abs(c)) { a=c; var s=p/4; } else var s = p/(2*Math.PI) * Math.asin (c/a); return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b; }, elasout: function(x, t, b, c, d) { var s=1.70158;var p=0;var a=c; if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3; if (a < Math.abs(c)) { a=c; var s=p/4; } else var s = p/(2*Math.PI) * Math.asin (c/a); return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b; }, elasinout: function(x, t, b, c, d) { var s=1.70158;var p=0;var a=c; if (t==0) return b; if ((t/=d/2)==2) return b+c; if (!p) p=d*(.3*1.5); if (a < Math.abs(c)) { a=c; var s=p/4; } else var s = p/(2*Math.PI) * Math.asin (c/a); if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b; return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b; }, backin: function(x, t, b, c, d) { var s=1.70158; return c*(t/=d)*t*((s+1)*t - s) + b; }, backout: function(x, t, b, c, d) { var s=1.70158; return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b; }, backinout: function(x, t, b, c, d) { var s=1.70158; if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b; return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b; }, linear: function(x, t, b, c, d) { return c*t/d + b; //linear } } }); // source --> http://xn--c1aisdbajmnqa.xn--p1ai/wp-content/themes/rttheme7/js/jquery.validate.js /* * jQuery validation plug-in pre-1.5.2 * * http://bassistance.de/jquery-plugins/jquery-plugin-validation/ * http://docs.jquery.com/Plugins/Validation * * Copyright (c) 2006 - 2008 Jörn Zaefferer * * $Id: jquery.validate.js 6243 2009-02-19 11:40:49Z joern.zaefferer $ * * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html */ (function($) { $.extend($.fn, { // http://docs.jquery.com/Plugins/Validation/validate validate: function( options ) { // if nothing is selected, return nothing; can't chain anyway if (!this.length) { options && options.debug && window.console && console.warn( "nothing selected, can't validate, returning nothing" ); return; } // check if a validator for this form was already created var validator = $.data(this[0], 'validator'); if ( validator ) { return validator; } validator = new $.validator( options, this[0] ); $.data(this[0], 'validator', validator); if ( validator.settings.onsubmit ) { // allow suppresing validation by adding a cancel class to the submit button this.find("input, button").filter(".cancel").click(function() { validator.cancelSubmit = true; }); // validate the form on submit this.submit( function( event ) { if ( validator.settings.debug ) // prevent form submit to be able to see console output event.preventDefault(); function handle() { if ( validator.settings.submitHandler ) { validator.settings.submitHandler.call( validator, validator.currentForm ); return false; } return true; } // prevent submit for invalid forms or custom submit handlers if ( validator.cancelSubmit ) { validator.cancelSubmit = false; return handle(); } if ( validator.form() ) { if ( validator.pendingRequest ) { validator.formSubmitted = true; return false; } return handle(); } else { validator.focusInvalid(); return false; } }); } return validator; }, // http://docs.jquery.com/Plugins/Validation/valid valid: function() { if ( $(this[0]).is('form')) { return this.validate().form(); } else { var valid = false; var validator = $(this[0].form).validate(); this.each(function() { valid |= validator.element(this); }); return valid; } }, // attributes: space seperated list of attributes to retrieve and remove removeAttrs: function(attributes) { var result = {}, $element = this; $.each(attributes.split(/\s/), function(index, value) { result[value] = $element.attr(value); $element.removeAttr(value); }); return result; }, // http://docs.jquery.com/Plugins/Validation/rules rules: function(command, argument) { var element = this[0]; if (command) { var settings = $.data(element.form, 'validator').settings; var staticRules = settings.rules; var existingRules = $.validator.staticRules(element); switch(command) { case "add": $.extend(existingRules, $.validator.normalizeRule(argument)); staticRules[element.name] = existingRules; if (argument.messages) settings.messages[element.name] = $.extend( settings.messages[element.name], argument.messages ); break; case "remove": if (!argument) { delete staticRules[element.name]; return existingRules; } var filtered = {}; $.each(argument.split(/\s/), function(index, method) { filtered[method] = existingRules[method]; delete existingRules[method]; }); return filtered; } } var data = $.validator.normalizeRules( $.extend( {}, $.validator.metadataRules(element), $.validator.classRules(element), $.validator.attributeRules(element), $.validator.staticRules(element) ), element); // make sure required is at front if (data.required) { var param = data.required; delete data.required; data = $.extend({required: param}, data); } return data; } }); // Custom selectors $.extend($.expr[":"], { // http://docs.jquery.com/Plugins/Validation/blank blank: function(a) {return !$.trim(a.value);}, // http://docs.jquery.com/Plugins/Validation/filled filled: function(a) {return !!$.trim(a.value);}, // http://docs.jquery.com/Plugins/Validation/unchecked unchecked: function(a) {return !a.checked;} }); $.format = function(source, params) { if ( arguments.length == 1 ) return function() { var args = $.makeArray(arguments); args.unshift(source); return $.format.apply( this, args ); }; if ( arguments.length > 2 && params.constructor != Array ) { params = $.makeArray(arguments).slice(1); } if ( params.constructor != Array ) { params = [ params ]; } $.each(params, function(i, n) { source = source.replace(new RegExp("\\{" + i + "\\}", "g"), n); }); return source; }; // constructor for validator $.validator = function( options, form ) { this.settings = $.extend( {}, $.validator.defaults, options ); this.currentForm = form; this.init(); }; $.extend($.validator, { defaults: { messages: {}, groups: {}, rules: {}, errorClass: "error", errorElement: "label", focusInvalid: true, errorContainer: $( [] ), errorLabelContainer: $( [] ), onsubmit: true, ignore: [], ignoreTitle: false, onfocusin: function(element) { this.lastActive = element; // hide error label and remove error class on focus if enabled if ( this.settings.focusCleanup && !this.blockFocusCleanup ) { this.settings.unhighlight && this.settings.unhighlight.call( this, element, this.settings.errorClass ); this.errorsFor(element).hide(); } }, onfocusout: function(element) { if ( !this.checkable(element) && (element.name in this.submitted || !this.optional(element)) ) { this.element(element); } }, onkeyup: function(element) { if ( element.name in this.submitted || element == this.lastElement ) { this.element(element); } }, onclick: function(element) { if ( element.name in this.submitted ) this.element(element); }, highlight: function( element, errorClass ) { $( element ).addClass( errorClass ); }, unhighlight: function( element, errorClass ) { $( element ).removeClass( errorClass ); } }, // http://docs.jquery.com/Plugins/Validation/Validator/setDefaults setDefaults: function(settings) { $.extend( $.validator.defaults, settings ); }, messages: { required: "This field is required.", remote: "Please fix this field.", email: "Please enter a valid email address.", url: "Please enter a valid URL.", date: "Please enter a valid date.", dateISO: "Please enter a valid date (ISO).", dateDE: "Bitte geben Sie ein gültiges Datum ein.", number: "Please enter a valid number.", numberDE: "Bitte geben Sie eine Nummer ein.", digits: "Please enter only digits", creditcard: "Please enter a valid credit card number.", equalTo: "Please enter the same value again.", accept: "Please enter a value with a valid extension.", maxlength: $.format("Please enter no more than {0} characters."), minlength: $.format("Please enter at least {0} characters."), rangelength: $.format("Please enter a value between {0} and {1} characters long."), range: $.format("Please enter a value between {0} and {1}."), max: $.format("Please enter a value less than or equal to {0}."), min: $.format("Please enter a value greater than or equal to {0}.") }, autoCreateRanges: false, prototype: { init: function() { this.labelContainer = $(this.settings.errorLabelContainer); this.errorContext = this.labelContainer.length && this.labelContainer || $(this.currentForm); this.containers = $(this.settings.errorContainer).add( this.settings.errorLabelContainer ); this.submitted = {}; this.valueCache = {}; this.pendingRequest = 0; this.pending = {}; this.invalid = {}; this.reset(); var groups = (this.groups = {}); $.each(this.settings.groups, function(key, value) { $.each(value.split(/\s/), function(index, name) { groups[name] = key; }); }); var rules = this.settings.rules; $.each(rules, function(key, value) { rules[key] = $.validator.normalizeRule(value); }); function delegate(event) { var validator = $.data(this[0].form, "validator"); validator.settings["on" + event.type] && validator.settings["on" + event.type].call(validator, this[0] ); } $(this.currentForm) .delegate("focusin focusout keyup", ":text, :password, :file, select, textarea", delegate) .delegate("click", ":radio, :checkbox", delegate); if (this.settings.invalidHandler) $(this.currentForm).bind("invalid-form.validate", this.settings.invalidHandler); }, // http://docs.jquery.com/Plugins/Validation/Validator/form form: function() { this.checkForm(); $.extend(this.submitted, this.errorMap); this.invalid = $.extend({}, this.errorMap); if (!this.valid()) $(this.currentForm).triggerHandler("invalid-form", [this]); this.showErrors(); return this.valid(); }, checkForm: function() { this.prepareForm(); for ( var i = 0, elements = (this.currentElements = this.elements()); elements[i]; i++ ) { this.check( elements[i] ); } return this.valid(); }, // http://docs.jquery.com/Plugins/Validation/Validator/element element: function( element ) { element = this.clean( element ); this.lastElement = element; this.prepareElement( element ); this.currentElements = $(element); var result = this.check( element ); if ( result ) { delete this.invalid[element.name]; } else { this.invalid[element.name] = true; } if ( !this.numberOfInvalids() ) { // Hide error containers on last error this.toHide = this.toHide.add( this.containers ); } this.showErrors(); return result; }, // http://docs.jquery.com/Plugins/Validation/Validator/showErrors showErrors: function(errors) { if(errors) { // add items to error list and map $.extend( this.errorMap, errors ); this.errorList = []; for ( var name in errors ) { this.errorList.push({ message: errors[name], element: this.findByName(name)[0] }); } // remove items from success list this.successList = $.grep( this.successList, function(element) { return !(element.name in errors); }); } this.settings.showErrors ? this.settings.showErrors.call( this, this.errorMap, this.errorList ) : this.defaultShowErrors(); }, // http://docs.jquery.com/Plugins/Validation/Validator/resetForm resetForm: function() { if ( $.fn.resetForm ) $( this.currentForm ).resetForm(); this.submitted = {}; this.prepareForm(); this.hideErrors(); this.elements().removeClass( this.settings.errorClass ); }, numberOfInvalids: function() { return this.objectLength(this.invalid); }, objectLength: function( obj ) { var count = 0; for ( var i in obj ) count++; return count; }, hideErrors: function() { this.addWrapper( this.toHide ).hide(); }, valid: function() { return this.size() == 0; }, size: function() { return this.errorList.length; }, focusInvalid: function() { if( this.settings.focusInvalid ) { try { $(this.findLastActive() || this.errorList.length && this.errorList[0].element || []).filter(":visible").focus(); } catch(e) { // ignore IE throwing errors when focusing hidden elements } } }, findLastActive: function() { var lastActive = this.lastActive; return lastActive && $.grep(this.errorList, function(n) { return n.element.name == lastActive.name; }).length == 1 && lastActive; }, elements: function() { var validator = this, rulesCache = {}; // select all valid inputs inside the form (no submit or reset buttons) // workaround $Query([]).add until http://dev.jquery.com/ticket/2114 is solved return $([]).add(this.currentForm.elements) .filter(":input") .not(":submit, :reset, :image, [disabled]") .not( this.settings.ignore ) .filter(function() { !this.name && validator.settings.debug && window.console && console.error( "%o has no name assigned", this); // select only the first element for each name, and only those with rules specified if ( this.name in rulesCache || !validator.objectLength($(this).rules()) ) return false; rulesCache[this.name] = true; return true; }); }, clean: function( selector ) { return $( selector )[0]; }, errors: function() { return $( this.settings.errorElement + "." + this.settings.errorClass, this.errorContext ); }, reset: function() { this.successList = []; this.errorList = []; this.errorMap = {}; this.toShow = $([]); this.toHide = $([]); this.formSubmitted = false; this.currentElements = $([]); }, prepareForm: function() { this.reset(); this.toHide = this.errors().add( this.containers ); }, prepareElement: function( element ) { this.reset(); this.toHide = this.errorsFor(element); }, check: function( element ) { element = this.clean( element ); // if radio/checkbox, validate first element in group instead if (this.checkable(element)) { element = this.findByName( element.name )[0]; } var rules = $(element).rules(); var dependencyMismatch = false; for( method in rules ) { var rule = { method: method, parameters: rules[method] }; try { var result = $.validator.methods[method].call( this, element.value.replace(/\r/g, ""), element, rule.parameters ); // if a method indicates that the field is optional and therefore valid, // don't mark it as valid when there are no other rules if ( result == "dependency-mismatch" ) { dependencyMismatch = true; continue; } dependencyMismatch = false; if ( result == "pending" ) { this.toHide = this.toHide.not( this.errorsFor(element) ); return; } if( !result ) { this.formatAndAdd( element, rule ); return false; } } catch(e) { this.settings.debug && window.console && console.log("exception occured when checking element " + element.id + ", check the '" + rule.method + "' method"); throw e; } } if (dependencyMismatch) return; if ( this.objectLength(rules) ) this.successList.push(element); return true; }, // return the custom message for the given element and validation method // specified in the element's "messages" metadata customMetaMessage: function(element, method) { if (!$.metadata) return; var meta = this.settings.meta ? $(element).metadata()[this.settings.meta] : $(element).metadata(); return meta && meta.messages && meta.messages[method]; }, // return the custom message for the given element name and validation method customMessage: function( name, method ) { var m = this.settings.messages[name]; return m && (m.constructor == String ? m : m[method]); }, // return the first defined argument, allowing empty strings findDefined: function() { for(var i = 0; i < arguments.length; i++) { if (arguments[i] !== undefined) return arguments[i]; } return undefined; }, defaultMessage: function( element, method) { return this.findDefined( this.customMessage( element.name, method ), this.customMetaMessage( element, method ), // title is never undefined, so handle empty string as undefined !this.settings.ignoreTitle && element.title || undefined, $.validator.messages[method], "Warning: No message defined for " + element.name + "" ); }, formatAndAdd: function( element, rule ) { var message = this.defaultMessage( element, rule.method ); if ( typeof message == "function" ) message = message.call(this, rule.parameters, element); this.errorList.push({ message: message, element: element }); this.errorMap[element.name] = message; this.submitted[element.name] = message; }, addWrapper: function(toToggle) { if ( this.settings.wrapper ) toToggle = toToggle.add( toToggle.parents( this.settings.wrapper ) ); return toToggle; }, defaultShowErrors: function() { for ( var i = 0; this.errorList[i]; i++ ) { var error = this.errorList[i]; this.settings.highlight && this.settings.highlight.call( this, error.element, this.settings.errorClass ); this.showLabel( error.element, error.message ); } if( this.errorList.length ) { this.toShow = this.toShow.add( this.containers ); } if (this.settings.success) { for ( var i = 0; this.successList[i]; i++ ) { this.showLabel( this.successList[i] ); } } if (this.settings.unhighlight) { for ( var i = 0, elements = this.validElements(); elements[i]; i++ ) { this.settings.unhighlight.call( this, elements[i], this.settings.errorClass ); } } this.toHide = this.toHide.not( this.toShow ); this.hideErrors(); this.addWrapper( this.toShow ).show(); }, validElements: function() { return this.currentElements.not(this.invalidElements()); }, invalidElements: function() { return $(this.errorList).map(function() { return this.element; }); }, showLabel: function(element, message) { var label = this.errorsFor( element ); if ( label.length ) { // refresh error/success class label.removeClass().addClass( this.settings.errorClass ); // check if we have a generated label, replace the message then label.attr("generated") && label.html(message); } else { // create label label = $("<" + this.settings.errorElement + "/>") .attr({"for": this.idOrName(element), generated: true}) .addClass(this.settings.errorClass) .html(message || ""); if ( this.settings.wrapper ) { // make sure the element is visible, even in IE // actually showing the wrapped element is handled elsewhere label = label.hide().show().wrap("<" + this.settings.wrapper + "/>").parent(); } if ( !this.labelContainer.append(label).length ) this.settings.errorPlacement ? this.settings.errorPlacement(label, $(element) ) : label.insertAfter(element); } if ( !message && this.settings.success ) { label.text(""); typeof this.settings.success == "string" ? label.addClass( this.settings.success ) : this.settings.success( label ); } this.toShow = this.toShow.add(label); }, errorsFor: function(element) { return this.errors().filter("[for='" + this.idOrName(element) + "']"); }, idOrName: function(element) { return this.groups[element.name] || (this.checkable(element) ? element.name : element.id || element.name); }, checkable: function( element ) { return /radio|checkbox/i.test(element.type); }, findByName: function( name ) { // select by name and filter by form for performance over form.find("[name=...]") var form = this.currentForm; return $(document.getElementsByName(name)).map(function(index, element) { return element.form == form && element.name == name && element || null; }); }, getLength: function(value, element) { switch( element.nodeName.toLowerCase() ) { case 'select': return $("option:selected", element).length; case 'input': if( this.checkable( element) ) return this.findByName(element.name).filter(':checked').length; } return value.length; }, depend: function(param, element) { return this.dependTypes[typeof param] ? this.dependTypes[typeof param](param, element) : true; }, dependTypes: { "boolean": function(param, element) { return param; }, "string": function(param, element) { return !!$(param, element.form).length; }, "function": function(param, element) { return param(element); } }, optional: function(element) { return !$.validator.methods.required.call(this, $.trim(element.value), element) && "dependency-mismatch"; }, startRequest: function(element) { if (!this.pending[element.name]) { this.pendingRequest++; this.pending[element.name] = true; } }, stopRequest: function(element, valid) { this.pendingRequest--; // sometimes synchronization fails, make sure pendingRequest is never < 0 if (this.pendingRequest < 0) this.pendingRequest = 0; delete this.pending[element.name]; if ( valid && this.pendingRequest == 0 && this.formSubmitted && this.form() ) { $(this.currentForm).submit(); } else if (!valid && this.pendingRequest == 0 && this.formSubmitted) { $(this.currentForm).triggerHandler("invalid-form", [this]); } }, previousValue: function(element) { return $.data(element, "previousValue") || $.data(element, "previousValue", previous = { old: null, valid: true, message: this.defaultMessage( element, "remote" ) }); } }, classRuleSettings: { required: {required: true}, email: {email: true}, url: {url: true}, date: {date: true}, dateISO: {dateISO: true}, dateDE: {dateDE: true}, number: {number: true}, numberDE: {numberDE: true}, digits: {digits: true}, creditcard: {creditcard: true} }, addClassRules: function(className, rules) { className.constructor == String ? this.classRuleSettings[className] = rules : $.extend(this.classRuleSettings, className); }, classRules: function(element) { var rules = {}; var classes = $(element).attr('class'); classes && $.each(classes.split(' '), function() { if (this in $.validator.classRuleSettings) { $.extend(rules, $.validator.classRuleSettings[this]); } }); return rules; }, attributeRules: function(element) { var rules = {}; var $element = $(element); for (method in $.validator.methods) { var value = $element.attr(method); if (value) { rules[method] = value; } } // maxlength may be returned as -1, 2147483647 (IE) and 524288 (safari) for text inputs if (rules.maxlength && /-1|2147483647|524288/.test(rules.maxlength)) { delete rules.maxlength; } return rules; }, metadataRules: function(element) { if (!$.metadata) return {}; var meta = $.data(element.form, 'validator').settings.meta; return meta ? $(element).metadata()[meta] : $(element).metadata(); }, staticRules: function(element) { var rules = {}; var validator = $.data(element.form, 'validator'); if (validator.settings.rules) { rules = $.validator.normalizeRule(validator.settings.rules[element.name]) || {}; } return rules; }, normalizeRules: function(rules, element) { // handle dependency check $.each(rules, function(prop, val) { // ignore rule when param is explicitly false, eg. required:false if (val === false) { delete rules[prop]; return; } if (val.param || val.depends) { var keepRule = true; switch (typeof val.depends) { case "string": keepRule = !!$(val.depends, element.form).length; break; case "function": keepRule = val.depends.call(element, element); break; } if (keepRule) { rules[prop] = val.param !== undefined ? val.param : true; } else { delete rules[prop]; } } }); // evaluate parameters $.each(rules, function(rule, parameter) { rules[rule] = $.isFunction(parameter) ? parameter(element) : parameter; }); // clean number parameters $.each(['minlength', 'maxlength', 'min', 'max'], function() { if (rules[this]) { rules[this] = Number(rules[this]); } }); $.each(['rangelength', 'range'], function() { if (rules[this]) { rules[this] = [Number(rules[this][0]), Number(rules[this][1])]; } }); if ($.validator.autoCreateRanges) { // auto-create ranges if (rules.min && rules.max) { rules.range = [rules.min, rules.max]; delete rules.min; delete rules.max; } if (rules.minlength && rules.maxlength) { rules.rangelength = [rules.minlength, rules.maxlength]; delete rules.minlength; delete rules.maxlength; } } // To support custom messages in metadata ignore rule methods titled "messages" if (rules.messages) { delete rules.messages } return rules; }, // Converts a simple string to a {string: true} rule, e.g., "required" to {required:true} normalizeRule: function(data) { if( typeof data == "string" ) { var transformed = {}; $.each(data.split(/\s/), function() { transformed[this] = true; }); data = transformed; } return data; }, // http://docs.jquery.com/Plugins/Validation/Validator/addMethod addMethod: function(name, method, message) { $.validator.methods[name] = method; $.validator.messages[name] = message; if (method.length < 3) { $.validator.addClassRules(name, $.validator.normalizeRule(name)); } }, methods: { // http://docs.jquery.com/Plugins/Validation/Methods/required required: function(value, element, param) { // check if dependency is met if ( !this.depend(param, element) ) return "dependency-mismatch"; switch( element.nodeName.toLowerCase() ) { case 'select': var options = $("option:selected", element); return options.length > 0 && ( element.type == "select-multiple" || ($.browser.msie && !(options[0].attributes['value'].specified) ? options[0].text : options[0].value).length > 0); case 'input': if ( this.checkable(element) ) return this.getLength(value, element) > 0; default: return $.trim(value).length > 0; } }, // http://docs.jquery.com/Plugins/Validation/Methods/remote remote: function(value, element, param) { if ( this.optional(element) ) return "dependency-mismatch"; var previous = this.previousValue(element); if (!this.settings.messages[element.name] ) this.settings.messages[element.name] = {}; this.settings.messages[element.name].remote = typeof previous.message == "function" ? previous.message(value) : previous.message; param = typeof param == "string" && {url:param} || param; if ( previous.old !== value ) { previous.old = value; var validator = this; this.startRequest(element); var data = {}; data[element.name] = value; $.ajax($.extend(true, { url: param, mode: "abort", port: "validate" + element.name, dataType: "json", data: data, success: function(response) { if ( response ) { var submitted = validator.formSubmitted; validator.prepareElement(element); validator.formSubmitted = submitted; validator.successList.push(element); validator.showErrors(); } else { var errors = {}; errors[element.name] = response || validator.defaultMessage( element, "remote" ); validator.showErrors(errors); } previous.valid = response; validator.stopRequest(element, response); } }, param)); return "pending"; } else if( this.pending[element.name] ) { return "pending"; } return previous.valid; }, // http://docs.jquery.com/Plugins/Validation/Methods/minlength minlength: function(value, element, param) { return this.optional(element) || this.getLength($.trim(value), element) >= param; }, // http://docs.jquery.com/Plugins/Validation/Methods/maxlength maxlength: function(value, element, param) { return this.optional(element) || this.getLength($.trim(value), element) <= param; }, // http://docs.jquery.com/Plugins/Validation/Methods/rangelength rangelength: function(value, element, param) { var length = this.getLength($.trim(value), element); return this.optional(element) || ( length >= param[0] && length <= param[1] ); }, // http://docs.jquery.com/Plugins/Validation/Methods/min min: function( value, element, param ) { return this.optional(element) || value >= param; }, // http://docs.jquery.com/Plugins/Validation/Methods/max max: function( value, element, param ) { return this.optional(element) || value <= param; }, // http://docs.jquery.com/Plugins/Validation/Methods/range range: function( value, element, param ) { return this.optional(element) || ( value >= param[0] && value <= param[1] ); }, // http://docs.jquery.com/Plugins/Validation/Methods/email email: function(value, element) { // contributed by Scott Gonzalez: http://projects.scottsplayground.com/email_address_validation/ return this.optional(element) || /^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i.test(value); }, // http://docs.jquery.com/Plugins/Validation/Methods/url url: function(value, element) { // contributed by Scott Gonzalez: http://projects.scottsplayground.com/iri/ return this.optional(element) || /^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(value); }, // http://docs.jquery.com/Plugins/Validation/Methods/date date: function(value, element) { return this.optional(element) || !/Invalid|NaN/.test(new Date(value)); }, // http://docs.jquery.com/Plugins/Validation/Methods/dateISO dateISO: function(value, element) { return this.optional(element) || /^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(value); }, // http://docs.jquery.com/Plugins/Validation/Methods/dateDE dateDE: function(value, element) { return this.optional(element) || /^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(value); }, // http://docs.jquery.com/Plugins/Validation/Methods/number number: function(value, element) { return this.optional(element) || /^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/.test(value); }, // http://docs.jquery.com/Plugins/Validation/Methods/numberDE numberDE: function(value, element) { return this.optional(element) || /^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(value); }, // http://docs.jquery.com/Plugins/Validation/Methods/digits digits: function(value, element) { return this.optional(element) || /^\d+$/.test(value); }, // http://docs.jquery.com/Plugins/Validation/Methods/creditcard // based on http://en.wikipedia.org/wiki/Luhn creditcard: function(value, element) { if ( this.optional(element) ) return "dependency-mismatch"; // accept only digits and dashes if (/[^0-9-]+/.test(value)) return false; var nCheck = 0, nDigit = 0, bEven = false; value = value.replace(/\D/g, ""); for (n = value.length - 1; n >= 0; n--) { var cDigit = value.charAt(n); var nDigit = parseInt(cDigit, 10); if (bEven) { if ((nDigit *= 2) > 9) nDigit -= 9; } nCheck += nDigit; bEven = !bEven; } return (nCheck % 10) == 0; }, // http://docs.jquery.com/Plugins/Validation/Methods/accept accept: function(value, element, param) { param = typeof param == "string" ? param : "png|jpe?g|gif"; return this.optional(element) || value.match(new RegExp(".(" + param + ")$", "i")); }, // http://docs.jquery.com/Plugins/Validation/Methods/equalTo equalTo: function(value, element, param) { return value == $(param).val(); } } }); })(jQuery); // ajax mode: abort // usage: $.ajax({ mode: "abort"[, port: "uniqueport"]}); // if mode:"abort" is used, the previous request on that port (port can be undefined) is aborted via XMLHttpRequest.abort() ;(function($) { var ajax = $.ajax; var pendingRequests = {}; $.ajax = function(settings) { // create settings for compatibility with ajaxSetup settings = $.extend(settings, $.extend({}, $.ajaxSettings, settings)); var port = settings.port; if (settings.mode == "abort") { if ( pendingRequests[port] ) { pendingRequests[port].abort(); } return (pendingRequests[port] = ajax.apply(this, arguments)); } return ajax.apply(this, arguments); }; })(jQuery); // provides cross-browser focusin and focusout events // IE has native support, in other browsers, use event caputuring (neither bubbles) // provides delegate(type: String, delegate: Selector, handler: Callback) plugin for easier event delegation // handler is only called when $(event.target).is(delegate), in the scope of the jquery-object for event.target // provides triggerEvent(type: String, target: Element) to trigger delegated events ;(function($) { $.each({ focus: 'focusin', blur: 'focusout' }, function( original, fix ){ $.event.special[fix] = { setup:function() { if ( $.browser.msie ) return false; this.addEventListener( original, $.event.special[fix].handler, true ); }, teardown:function() { if ( $.browser.msie ) return false; this.removeEventListener( original, $.event.special[fix].handler, true ); }, handler: function(e) { arguments[0] = $.event.fix(e); arguments[0].type = fix; return $.event.handle.apply(this, arguments); } }; }); $.extend($.fn, { delegate: function(type, delegate, handler) { return this.bind(type, function(event) { var target = $(event.target); if (target.is(delegate)) { return handler.apply(target, arguments); } }); }, triggerEvent: function(type, target) { return this.triggerHandler(type, [$.event.fix({ type: type, target: target })]); } }) })(jQuery); // source --> http://xn--c1aisdbajmnqa.xn--p1ai/wp-content/themes/rttheme7/js/ddsmoothmenu.js //** Smooth Navigational Menu- By Dynamic Drive DHTML code library: http://www.dynamicdrive.com //** Script Download/ instructions page: http://www.dynamicdrive.com/dynamicindex1/ddlevelsmenu/ //** Menu created: Nov 12, 2008 //** Dec 12th, 08" (v1.01): Fixed Shadow issue when multiple LIs within the same UL (level) contain sub menus: http://www.dynamicdrive.com/forums/showthread.php?t=39177&highlight=smooth //** Feb 11th, 09" (v1.02): The currently active main menu item (LI A) now gets a CSS class of ".selected", including sub menu items. //** May 1st, 09" (v1.3): //** 1) Now supports vertical (side bar) menu mode- set "orientation" to 'v' //** 2) In IE6, shadows are now always disabled //** July 27th, 09" (v1.31): Fixed bug so shadows can be disabled if desired. var ddsmoothmenu={ transition: {overtime:300, outtime:300}, //duration of slide in/ out animation, in milliseconds shadow: {enable:false, offsetx:5, offsety:5}, ///////Stop configuring beyond here/////////////////////////// detectwebkit: navigator.userAgent.toLowerCase().indexOf("applewebkit")!=-1, //detect WebKit browsers (Safari, Chrome etc) detectie6: document.all && !window.XMLHttpRequest, getajaxmenu:function($, setting){ //function to fetch external page containing the panel DIVs var $menucontainer=$('#'+setting.contentsource[0]) //reference empty div on page that will hold menu $menucontainer.html("Loading Menu...") $.ajax({ url: setting.contentsource[1], //path to external menu file async: true, error:function(ajaxrequest){ $menucontainer.html('Error fetching content. Server Response: '+ajaxrequest.responseText) }, success:function(content){ $menucontainer.html(content) ddsmoothmenu.buildmenu($, setting) } }) }, buildmenu:function($, setting){ var smoothmenu=ddsmoothmenu var $mainmenu=$("#"+setting.mainmenuid+">ul") //reference main menu UL $mainmenu.parent().get(0).className=setting.classname || "ddsmoothmenu" var $headers=$mainmenu.find("ul").parent() $headers.hover( function(e){ $(this).children('a:eq(0)').addClass('selected') }, function(e){ $(this).children('a:eq(0)').removeClass('selected') } ) $headers.each(function(i){ //loop through each LI header var $curobj=$(this).css({zIndex: 100-i}) //reference current LI header var $subul=$(this).find('ul:eq(0)').css({display:'block'}) this._dimensions={w:this.offsetWidth, h:this.offsetHeight, subulw:$subul.outerWidth(), subulh:$subul.outerHeight()} this.istopheader=$curobj.parents("ul").length==1? true : false //is top level header? $subul.css({top:this.istopheader && setting.orientation!='v'? this._dimensions.h+"px" : 0}) if (smoothmenu.shadow.enable){ this._shadowoffset={x:(this.istopheader?$subul.offset().left+smoothmenu.shadow.offsetx : this._dimensions.w), y:(this.istopheader? $subul.offset().top+smoothmenu.shadow.offsety : $curobj.position().top)} //store this shadow's offsets if (this.istopheader) $parentshadow=$(document.body) else{ var $parentLi=$curobj.parents("li:eq(0)") $parentshadow=$parentLi.get(0).$shadow } this.$shadow=$('
').prependTo($parentshadow).css({left:this._shadowoffset.x+'px', top:this._shadowoffset.y+'px'}) //insert shadow DIV and set it to parent node for the next shadow div } $curobj.hover( function(e){ var $targetul=$(this).children("ul:eq(0)") this._offsets={left:$(this).offset().left, top:$(this).offset().top} var menuleft=this.istopheader && setting.orientation!='v'? 0 : this._dimensions.w menuleft=(this._offsets.left+menuleft+this._dimensions.subulw>$(window).width())? (this.istopheader && setting.orientation!='v'? -this._dimensions.subulw+this._dimensions.w : -this._dimensions.w) : menuleft //calculate this sub menu's offsets from its parent if ($targetul.queue().length<=1){ //if 1 or less queued animations $targetul.css({left:menuleft+"px", width:this._dimensions.subulw+'px'}).animate({height:'show',opacity:'show'}, ddsmoothmenu.transition.overtime) if (smoothmenu.shadow.enable){ var shadowleft=this.istopheader? $targetul.offset().left+ddsmoothmenu.shadow.offsetx : menuleft var shadowtop=this.istopheader?$targetul.offset().top+smoothmenu.shadow.offsety : this._shadowoffset.y if (!this.istopheader && ddsmoothmenu.detectwebkit){ //in WebKit browsers, restore shadow's opacity to full this.$shadow.css({opacity:1}) } this.$shadow.css({overflow:'', width:this._dimensions.subulw+'px', left:shadowleft+'px', top:shadowtop+'px'}).animate({height:this._dimensions.subulh+'px'}, ddsmoothmenu.transition.overtime) } } }, function(e){ var $targetul=$(this).children("ul:eq(0)") $targetul.animate({height:'hide', opacity:'hide'}, ddsmoothmenu.transition.outtime) if (smoothmenu.shadow.enable){ if (ddsmoothmenu.detectwebkit){ //in WebKit browsers, set first child shadow's opacity to 0, as "overflow:hidden" doesn't work in them this.$shadow.children('div:eq(0)').css({opacity:0}) } this.$shadow.css({overflow:'hidden'}).animate({height:0}, ddsmoothmenu.transition.outtime) } } ) //end hover }) //end $headers.each() $mainmenu.find("ul").css({display:'none', visibility:'visible'}) }, init:function(setting){ if (typeof setting.customtheme=="object" && setting.customtheme.length==2){ //override default menu colors (default/hover) with custom set? var mainmenuid='#'+setting.mainmenuid var mainselector=(setting.orientation=="v")? mainmenuid : mainmenuid+', '+mainmenuid document.write('') } this.shadow.enable=(document.all && !window.XMLHttpRequest)? false : this.shadow.enable //in IE6, always disable shadow jQuery(document).ready(function($){ //ajax menu? if (typeof setting.contentsource=="object"){ //if external ajax menu ddsmoothmenu.getajaxmenu($, setting) } else{ //else if markup menu ddsmoothmenu.buildmenu($, setting) } }) } } //end ddsmoothmenu variable //Initialize Menu instance(s):; // source --> http://xn--c1aisdbajmnqa.xn--p1ai/wp-content/themes/rttheme7/js/script.js //home page slider jQuery(document).ready(function(){ var rttheme_effect_options = jQuery("meta[name=rttheme_effect_options]").attr('content'); var rttheme_slider_time_out = jQuery("meta[name=rttheme_slider_time_out]").attr('content'); var rttheme_slider_numbers = jQuery("meta[name=rttheme_slider_numbers]").attr('content'); if(rttheme_slider_numbers=='true') { var numbers="#numbers"; } jQuery('#slider_area').cycle({ fx: rttheme_effect_options, easing: 'backout', cleartype: 1, timeout: rttheme_slider_time_out , pager: numbers, pagerAnchorBuilder: function(idx) { return '
  •  
  • '; } }); }); //cufon fonts var rttheme_disable_cufon= jQuery("meta[name=rttheme_disable_cufon]").attr('content'); if(rttheme_disable_cufon!='true') { jQuery(document).ready(function(){ Cufon.replace('h1,h2,h3,h4,h5,h6,.title_1,.title_2', {hover: true}); }); } //pretty photo jQuery(document).ready(function(){ jQuery("a[rel^='prettyPhoto']").prettyPhoto(); }); //navigation jQuery(document).ready(function(){ ddsmoothmenu.init({ mainmenuid: "dropdown_menu", //menu DIV id orientation: 'h', //Horizontal or vertical menu: Set to "h" or "v" classname: 'dropdown', //class added to menu's outer DIV //customtheme: ["#1c5a80", "#18374a"], contentsource: "markup" //"markup" or ["container_id", "path_to_menu_file"] }) }); //image effects jQuery(document).ready(function(){ var image_e= jQuery(".image.portfolio, .image.product_image"); image_e.mouseover(function(){jQuery(this).stop().animate({ opacity:0.6 }, 400); }).mouseout(function(){ image_e.stop().animate({ opacity:1 }, 400 ); }); }); //validate contact form jQuery(document).ready(function(){ jQuery.validator.messages.required = ""; jQuery("#validate_form").validate({}); }); //hack for ie linked images border jQuery(document).ready(function(){ var all_images = jQuery("#content img"); var all_images_links = all_images.parent(); all_images_links.addClass("no_border"); }); //sub menu effect jQuery(document).ready(function(){ var sub_menu_link= jQuery("#sub_menu li a"); sub_menu_link.mouseover( function(){ jQuery(this).stop().animate({ paddingLeft : 20 }, 20); }).mouseout(function(){ jQuery(this).stop().animate({ paddingLeft : 0 }, 200 ); }); }); //dropdown menu effect jQuery(document).ready(function(){ var dp_menu_link= jQuery("#dropdown_menu ul li ul li a"); dp_menu_link.mouseover( function(){ jQuery(this).stop().animate({ paddingLeft : 40 }, 20); }).mouseout(function(){ jQuery(this).stop().animate({ paddingLeft : 10 }, 200 ); }); }); // source --> http://xn--c1aisdbajmnqa.xn--p1ai/wp-content/themes/rttheme7/js/jquery.prettyPhoto.js /* ------------------------------------------------------------------------ * Class: prettyPhoto * Use: Lightbox clone for jQuery * Author: Stephane Caron (http://www.no-margin-for-errors.com) * Version: 2.5.6 ------------------------------------------------------------------------- */ (function($){$.prettyPhoto={version:'2.5.6'};$.fn.prettyPhoto=function(settings){settings=jQuery.extend({animationSpeed:'normal',opacity:0.80,showTitle:true,allowresize:true,default_width:500,default_height:344,counter_separator_label:'/',theme:'light_rounded',hideflash:false,wmode:'opaque',autoplay:true,modal:false,changepicturecallback:function(){},callback:function(){},markup:'
    \
    \
    \
    \
    \
    \
    \
    \
    \
    \
    \
    \ Expand \
    \ next \ previous \
    \
    \
    \ Close \

    \
    \ Previous \

    0/0

    \ Next \
    \
    \
    \
    \
    \
    \
    \
    \
    \
    \
    \
    \
    \
    \
    ',image_markup:'',flash_markup:'',quicktime_markup:'',iframe_markup:'',inline_markup:'
    {content}
    '},settings);if($.browser.msie&&parseInt($.browser.version)==6){settings.theme="light_square";} if($('.pp_overlay').size()==0)_buildOverlay();var doresize=true,percentBased=false,correctSizes,$pp_pic_holder,$ppt,$pp_overlay,pp_contentHeight,pp_contentWidth,pp_containerHeight,pp_containerWidth,windowHeight=$(window).height(),windowWidth=$(window).width(),setPosition=0,scrollPos=_getScroll();$(window).scroll(function(){scrollPos=_getScroll();_centerOverlay();_resizeOverlay();});$(window).resize(function(){_centerOverlay();_resizeOverlay();});$(document).keydown(function(e){if($pp_pic_holder.is(':visible')) switch(e.keyCode){case 37:$.prettyPhoto.changePage('previous');break;case 39:$.prettyPhoto.changePage('next');break;case 27:if(!settings.modal) $.prettyPhoto.close();break;};});$(this).each(function(){$(this).bind('click',function(){_self=this;theRel=$(this).attr('rel');galleryRegExp=/\[(?:.*)\]/;theGallery=galleryRegExp.exec(theRel);var images=new Array(),titles=new Array(),descriptions=new Array();if(theGallery){$('a[rel*='+theGallery+']').each(function(i){if($(this)[0]===$(_self)[0])setPosition=i;images.push($(this).attr('href'));titles.push($(this).find('img').attr('alt'));descriptions.push($(this).attr('title'));});}else{images=$(this).attr('href');titles=($(this).find('img').attr('alt'))?$(this).find('img').attr('alt'):'';descriptions=($(this).attr('title'))?$(this).attr('title'):'';} $.prettyPhoto.open(images,titles,descriptions);return false;});});$.prettyPhoto.open=function(gallery_images,gallery_titles,gallery_descriptions){if($.browser.msie&&$.browser.version==6){$('select').css('visibility','hidden');};if(settings.hideflash)$('object,embed').css('visibility','hidden');images=$.makeArray(gallery_images);titles=$.makeArray(gallery_titles);descriptions=$.makeArray(gallery_descriptions);image_set=($(images).size()>0)?true:false;_checkPosition($(images).size());$('.pp_loaderIcon').show();$pp_overlay.show().fadeTo(settings.animationSpeed,settings.opacity);$pp_pic_holder.find('.currentTextHolder').text((setPosition+1)+settings.counter_separator_label+$(images).size());if(descriptions[setPosition]){$pp_pic_holder.find('.pp_description').show().html(unescape(descriptions[setPosition]));}else{$pp_pic_holder.find('.pp_description').hide().text('');};if(titles[setPosition]&&settings.showTitle){hasTitle=true;$ppt.html(unescape(titles[setPosition]));}else{hasTitle=false;};movie_width=(parseFloat(grab_param('width',images[setPosition])))?grab_param('width',images[setPosition]):settings.default_width.toString();movie_height=(parseFloat(grab_param('height',images[setPosition])))?grab_param('height',images[setPosition]):settings.default_height.toString();if(movie_width.indexOf('%')!=-1||movie_height.indexOf('%')!=-1){movie_height=parseFloat(($(window).height()*parseFloat(movie_height)/100)-100);movie_width=parseFloat(($(window).width()*parseFloat(movie_width)/100)-100);percentBased=true;} $pp_pic_holder.fadeIn(function(){imgPreloader="";switch(_getFileType(images[setPosition])){case'image':imgPreloader=new Image();nextImage=new Image();if(image_set&&setPosition>$(images).size())nextImage.src=images[setPosition+1];prevImage=new Image();if(image_set&&images[setPosition-1])prevImage.src=images[setPosition-1];$pp_pic_holder.find('#pp_full_res')[0].innerHTML=settings.image_markup;$pp_pic_holder.find('#fullResImage').attr('src',images[setPosition]);imgPreloader.onload=function(){correctSizes=_fitToViewport(imgPreloader.width,imgPreloader.height);_showContent();};imgPreloader.onerror=function(){alert('Image cannot be loaded. Make sure the path is correct and image exist.');$.prettyPhoto.close();};imgPreloader.src=images[setPosition];break;case'youtube':correctSizes=_fitToViewport(movie_width,movie_height);movie='http://www.youtube.com/v/'+grab_param('v',images[setPosition]);if(settings.autoplay)movie+="&autoplay=1";toInject=settings.flash_markup.replace(/{width}/g,correctSizes['width']).replace(/{height}/g,correctSizes['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,movie);break;case'vimeo':correctSizes=_fitToViewport(movie_width,movie_height);movie_id=images[setPosition];movie='http://vimeo.com/moogaloop.swf?clip_id='+movie_id.replace('http://vimeo.com/','');if(settings.autoplay)movie+="&autoplay=1";toInject=settings.flash_markup.replace(/{width}/g,correctSizes['width']).replace(/{height}/g,correctSizes['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,movie);break;case'quicktime':correctSizes=_fitToViewport(movie_width,movie_height);correctSizes['height']+=15;correctSizes['contentHeight']+=15;correctSizes['containerHeight']+=15;toInject=settings.quicktime_markup.replace(/{width}/g,correctSizes['width']).replace(/{height}/g,correctSizes['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,images[setPosition]).replace(/{autoplay}/g,settings.autoplay);break;case'flash':correctSizes=_fitToViewport(movie_width,movie_height);flash_vars=images[setPosition];flash_vars=flash_vars.substring(images[setPosition].indexOf('flashvars')+10,images[setPosition].length);filename=images[setPosition];filename=filename.substring(0,filename.indexOf('?'));toInject=settings.flash_markup.replace(/{width}/g,correctSizes['width']).replace(/{height}/g,correctSizes['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,filename+'?'+flash_vars);break;case'iframe':correctSizes=_fitToViewport(movie_width,movie_height);frame_url=images[setPosition];frame_url=frame_url.substr(0,frame_url.indexOf('iframe')-1);toInject=settings.iframe_markup.replace(/{width}/g,correctSizes['width']).replace(/{height}/g,correctSizes['height']).replace(/{path}/g,frame_url);break;case'inline':myClone=$(images[setPosition]).clone().css({'width':settings.default_width}).wrapInner('
    ').appendTo($('body'));correctSizes=_fitToViewport($(myClone).width(),$(myClone).height());$(myClone).remove();toInject=settings.inline_markup.replace(/{content}/g,$(images[setPosition]).html());break;};if(!imgPreloader){$pp_pic_holder.find('#pp_full_res')[0].innerHTML=toInject;_showContent();};});};$.prettyPhoto.changePage=function(direction){if(direction=='previous'){setPosition--;if(setPosition<0){setPosition=0;return;};}else{if($('.pp_arrow_next').is('.disabled'))return;setPosition++;};if(!doresize)doresize=true;_hideContent(function(){$.prettyPhoto.open(images,titles,descriptions)});$('a.pp_expand,a.pp_contract').fadeOut(settings.animationSpeed);};$.prettyPhoto.close=function(){$pp_pic_holder.find('object,embed').css('visibility','hidden');$('div.pp_pic_holder,div.ppt,.pp_fade').fadeOut(settings.animationSpeed);$pp_overlay.fadeOut(settings.animationSpeed,function(){$('#pp_full_res').html('');$pp_pic_holder.attr('style','').find('div:not(.pp_hoverContainer)').attr('style','');_centerOverlay();if($.browser.msie&&$.browser.version==6){$('select').css('visibility','visible');};if(settings.hideflash)$('object,embed').css('visibility','visible');setPosition=0;settings.callback();});doresize=true;};_showContent=function(){$('.pp_loaderIcon').hide();projectedTop=scrollPos['scrollTop']+((windowHeight/2)-(correctSizes['containerHeight']/2));if(projectedTop<0)projectedTop=0+$ppt.height();$pp_pic_holder.find('.pp_content').animate({'height':correctSizes['contentHeight']},settings.animationSpeed);$pp_pic_holder.animate({'top':projectedTop,'left':(windowWidth/2)-(correctSizes['containerWidth']/2),'width':correctSizes['containerWidth']},settings.animationSpeed,function(){$pp_pic_holder.find('.pp_hoverContainer,#fullResImage').height(correctSizes['height']).width(correctSizes['width']);$pp_pic_holder.find('.pp_fade').fadeIn(settings.animationSpeed);if(image_set&&_getFileType(images[setPosition])=="image"){$pp_pic_holder.find('.pp_hoverContainer').show();}else{$pp_pic_holder.find('.pp_hoverContainer').hide();} if(settings.showTitle&&hasTitle){$ppt.css({'top':$pp_pic_holder.offset().top-25,'left':$pp_pic_holder.offset().left+20,'display':'none'});$ppt.fadeIn(settings.animationSpeed);};if(correctSizes['resized'])$('a.pp_expand,a.pp_contract').fadeIn(settings.animationSpeed);settings.changepicturecallback();});};function _hideContent(callback){$pp_pic_holder.find('#pp_full_res object,#pp_full_res embed').css('visibility','hidden');$pp_pic_holder.find('.pp_fade').fadeOut(settings.animationSpeed,function(){$('.pp_loaderIcon').show();if(callback)callback();});$ppt.fadeOut(settings.animationSpeed);} function _checkPosition(setCount){if(setPosition==setCount-1){$pp_pic_holder.find('a.pp_next').css('visibility','hidden');$pp_pic_holder.find('a.pp_arrow_next').addClass('disabled').unbind('click');}else{$pp_pic_holder.find('a.pp_next').css('visibility','visible');$pp_pic_holder.find('a.pp_arrow_next.disabled').removeClass('disabled').bind('click',function(){$.prettyPhoto.changePage('next');return false;});};if(setPosition==0){$pp_pic_holder.find('a.pp_previous').css('visibility','hidden');$pp_pic_holder.find('a.pp_arrow_previous').addClass('disabled').unbind('click');}else{$pp_pic_holder.find('a.pp_previous').css('visibility','visible');$pp_pic_holder.find('a.pp_arrow_previous.disabled').removeClass('disabled').bind('click',function(){$.prettyPhoto.changePage('previous');return false;});};if(setCount>1){$('.pp_nav').show();}else{$('.pp_nav').hide();}};function _fitToViewport(width,height){hasBeenResized=false;_getDimensions(width,height);imageWidth=width;imageHeight=height;if(((pp_containerWidth>windowWidth)||(pp_containerHeight>windowHeight))&&doresize&&settings.allowresize&&!percentBased){hasBeenResized=true;notFitting=true;while(notFitting){if((pp_containerWidth>windowWidth)){imageWidth=(windowWidth-200);imageHeight=(height/width)*imageWidth;}else if((pp_containerHeight>windowHeight)){imageHeight=(windowHeight-200);imageWidth=(width/height)*imageHeight;}else{notFitting=false;};pp_containerHeight=imageHeight;pp_containerWidth=imageWidth;};_getDimensions(imageWidth,imageHeight);};return{width:Math.floor(imageWidth),height:Math.floor(imageHeight),containerHeight:Math.floor(pp_containerHeight),containerWidth:Math.floor(pp_containerWidth)+40,contentHeight:Math.floor(pp_contentHeight),contentWidth:Math.floor(pp_contentWidth),resized:hasBeenResized};};function _getDimensions(width,height){width=parseFloat(width);height=parseFloat(height);$pp_details=$pp_pic_holder.find('.pp_details');$pp_details.width(width);detailsHeight=parseFloat($pp_details.css('marginTop'))+parseFloat($pp_details.css('marginBottom'));$pp_details=$pp_details.clone().appendTo($('body')).css({'position':'absolute','top':-10000});detailsHeight+=$pp_details.height();detailsHeight=(detailsHeight<=34)?36:detailsHeight;if($.browser.msie&&$.browser.version==7)detailsHeight+=8;$pp_details.remove();pp_contentHeight=height+detailsHeight;pp_contentWidth=width;pp_containerHeight=pp_contentHeight+$ppt.height()+$pp_pic_holder.find('.pp_top').height()+$pp_pic_holder.find('.pp_bottom').height();pp_containerWidth=width;} function _getFileType(itemSrc){if(itemSrc.match(/youtube\.com\/watch/i)){return'youtube';}else if(itemSrc.match(/vimeo\.com/i)){return'vimeo';}else if(itemSrc.indexOf('.mov')!=-1){return'quicktime';}else if(itemSrc.indexOf('.swf')!=-1){return'flash';}else if(itemSrc.indexOf('iframe')!=-1){return'iframe'}else if(itemSrc.substr(0,1)=='#'){return'inline';}else{return'image';};};function _centerOverlay(){if(doresize){titleHeight=$ppt.height();contentHeight=$pp_pic_holder.height();contentwidth=$pp_pic_holder.width();projectedTop=(windowHeight/2)+scrollPos['scrollTop']-((contentHeight+titleHeight)/2);$pp_pic_holder.css({'top':projectedTop,'left':(windowWidth/2)+scrollPos['scrollLeft']-(contentwidth/2)});$ppt.css({'top':projectedTop-titleHeight,'left':(windowWidth/2)+scrollPos['scrollLeft']-(contentwidth/2)+20});};};function _getScroll(){if(self.pageYOffset){return{scrollTop:self.pageYOffset,scrollLeft:self.pageXOffset};}else if(document.documentElement&&document.documentElement.scrollTop){return{scrollTop:document.documentElement.scrollTop,scrollLeft:document.documentElement.scrollLeft};}else if(document.body){return{scrollTop:document.body.scrollTop,scrollLeft:document.body.scrollLeft};};};function _resizeOverlay(){windowHeight=$(window).height();windowWidth=$(window).width();$pp_overlay.css({'height':$(document).height()});};function _buildOverlay(){$('body').append(settings.markup);$pp_pic_holder=$('.pp_pic_holder');$ppt=$('.ppt');$pp_overlay=$('div.pp_overlay');$pp_pic_holder.attr('class','pp_pic_holder '+settings.theme);$pp_overlay.css({'opacity':0,'height':$(document).height()}).bind('click',function(){if(!settings.modal) $.prettyPhoto.close();});$('a.pp_close').bind('click',function(){$.prettyPhoto.close();return false;});$('a.pp_expand').bind('click',function(){$this=$(this);if($this.hasClass('pp_expand')){$this.removeClass('pp_expand').addClass('pp_contract');doresize=false;}else{$this.removeClass('pp_contract').addClass('pp_expand');doresize=true;};_hideContent(function(){$.prettyPhoto.open(images,titles,descriptions)});$pp_pic_holder.find('.pp_fade').fadeOut(settings.animationSpeed);return false;});$pp_pic_holder.find('.pp_previous, .pp_arrow_previous').bind('click',function(){$.prettyPhoto.changePage('previous');return false;});$pp_pic_holder.find('.pp_next, .pp_arrow_next').bind('click',function(){$.prettyPhoto.changePage('next');return false;});};_centerOverlay();};function grab_param(name,url){name=name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");var regexS="[\\?&]"+name+"=([^&#]*)";var regex=new RegExp(regexS);var results=regex.exec(url);if(results==null) return"";else return results[1];}})(jQuery); // source --> http://xn--c1aisdbajmnqa.xn--p1ai/wp-content/themes/rttheme7/js/cufon.js /* * Copyright (c) 2009 Simo Kinnunen. * Licensed under the MIT license. * * @version 1.09 */ var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E0){E=" "+E}}else{if(B400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||JD){D=J}K.push(J)}if(ID){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?ML:(M<=I&&L<=I)?M>L:MO){O=K}if(I>N){N=I}if(Kcufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m http://xn--c1aisdbajmnqa.xn--p1ai/wp-content/themes/rttheme7/js/Lucida_400.font.js /*! * The following copyright notice may not be removed under any circumstances. * * Copyright: * © 1991 Bigelow & Holmes Inc. Pat. Des. 289,420. All Rights Reserved. © * 1990-1991 Type Solutions, Inc. All Rights Reserved. * * Trademark: * Lucida® is a registered trademark of Bigelow & Holmes Inc. */ Cufon.registerFont({"w":1295,"face":{"font-family":"Lucida Sans","font-weight":400,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 6 2 3 5 4 2 2 4","ascent":"1638","descent":"-410","x-height":"25","bbox":"-184 -1900 1999 432","underline-thickness":"100","underline-position":"-150","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":648},"!":{"d":"225,0r0,-197r197,0r0,197r-197,0xm250,-395r-25,-789r0,-296r197,0r0,296r-24,789r-148,0","w":648},"\"":{"d":"136,-1086r-25,-493r197,0r-24,493r-148,0xm481,-1086r-25,-493r198,0r-25,493r-148,0","w":765},"#":{"d":"203,0r111,-444r-299,0r25,-124r305,0r87,-345r-324,0r25,-123r329,0r112,-444r127,0r-111,444r263,0r111,-444r128,0r-111,444r299,0r-24,123r-306,0r-87,345r324,0r-25,124r-329,0r-111,444r-128,0r111,-444r-263,0r-111,444r-128,0xm473,-568r263,0r87,-345r-264,0"},"$":{"d":"1055,-414v-3,216,-147,378,-346,414r0,123r-98,0r0,-123v-117,0,-249,-28,-395,-83r0,-170v151,70,282,105,395,105r0,-531v-176,-114,-249,-146,-321,-300v-82,-177,12,-372,128,-443v50,-31,114,-52,193,-58r0,-124r98,0r0,124v94,3,237,32,321,67r0,161v-121,-50,-176,-81,-321,-93r0,527v105,61,270,171,300,230v27,52,46,108,46,174xm709,-160v130,-39,211,-172,153,-320v-13,-32,-64,-80,-153,-141r0,461xm611,-1339v-129,34,-219,150,-163,295v33,86,71,99,163,161r0,-456"},"%":{"d":"24,37r1166,-1554r154,0r-1165,1554r-155,0xm641,-1110v0,208,-112,370,-314,370v-203,0,-315,-162,-315,-370v0,-209,113,-370,315,-370v201,0,314,162,314,370xm160,-1110v0,137,48,271,167,271v118,0,166,-135,166,-271v0,-138,-48,-272,-166,-272v-118,0,-167,135,-167,272xm1357,-370v0,209,-112,370,-315,370v-202,0,-314,-162,-314,-370v0,-209,112,-370,314,-370v202,0,315,161,315,370xm876,-370v0,137,47,271,166,271v118,0,167,-135,167,-271v0,-138,-49,-272,-167,-272v-117,0,-166,135,-166,272","w":1369},"&":{"d":"1046,-339v82,-106,93,-263,90,-448r196,0v0,219,-65,407,-196,566v60,76,128,150,205,221r-280,0r-73,-88v-109,83,-237,125,-383,125v-305,-2,-531,-181,-531,-477v0,-239,137,-396,361,-464v-67,-121,-100,-221,-100,-301v0,-191,159,-307,358,-312v181,-5,331,128,331,299v0,148,-108,277,-325,386v99,176,215,340,347,493xm271,-489v0,210,143,378,366,378v93,0,181,-30,265,-91v-183,-225,-256,-337,-400,-585v-148,58,-231,136,-231,298xm685,-1369v-99,0,-152,72,-152,155v0,68,31,154,94,257v141,-65,212,-151,212,-258v1,-89,-62,-154,-154,-154","w":1428},"'":{"d":"160,-1036r-49,-543r247,0r-50,543r-148,0","w":469},"(":{"d":"592,-1443v-193,196,-272,436,-272,801v0,216,34,415,105,564v36,77,92,156,167,238r0,136v-205,-136,-339,-345,-417,-594v-118,-376,-9,-778,153,-1016v69,-101,155,-191,264,-265r0,136","w":666},")":{"d":"74,-1443r0,-136v205,136,339,346,417,595v119,377,9,777,-153,1016v-69,102,-155,191,-264,264r0,-136v193,-198,271,-434,271,-802v0,-214,-33,-416,-104,-564v-36,-77,-92,-156,-167,-237","w":666},"*":{"d":"832,-1289r45,141r-303,66v8,-33,-4,-62,-26,-82xm500,-1018v29,-3,61,-27,70,-51r207,231r-120,87xm417,-1069v9,25,42,48,70,51r-156,267r-120,-87xm110,-1148r46,-141r284,125v-22,19,-33,48,-27,82xm420,-1480r148,0r-31,308v-23,-15,-63,-15,-86,0","w":987},"+":{"d":"574,-49r0,-469r-469,0r0,-148r469,0r0,-469r148,0r0,469r469,0r0,148r-469,0r0,469r-148,0"},",":{"d":"200,321r0,-74v47,-13,66,-50,83,-97v10,-25,14,-89,13,-150r-96,0r0,-247r247,0v0,170,10,380,-59,470v-42,55,-101,89,-188,98","w":648},"-":{"d":"111,-543r0,-148r444,0r0,148r-444,0","w":666},".":{"d":"200,0r0,-247r247,0r0,247r-247,0","w":648},"\/":{"d":"12,296r825,-1875r162,0r-825,1875r-162,0","w":1012},"0":{"d":"934,-71v-157,136,-414,137,-571,1v-302,-261,-304,-1078,0,-1340v158,-136,414,-135,571,0v303,261,302,1076,0,1339xm648,-111v108,0,185,-59,236,-173v96,-212,96,-700,0,-912v-51,-114,-128,-173,-236,-173v-108,0,-184,59,-235,173v-95,212,-95,700,0,912v51,114,127,173,235,173"},"1":{"d":"536,0r0,-1332r-234,0r0,-124r432,-37r0,1493r-198,0"},"2":{"d":"599,-1517v264,0,459,164,459,409v0,76,-20,146,-50,215v-32,73,-208,236,-326,336v-102,86,-246,229,-274,384r643,0r0,173r-881,0r0,-173v58,-161,286,-384,461,-539v133,-118,210,-200,218,-391v7,-166,-113,-270,-280,-266v-164,4,-236,51,-362,119r0,-174v131,-62,262,-93,392,-93"},"3":{"d":"565,-1517v276,-4,457,105,457,343v0,132,-52,205,-129,274v-43,38,-103,71,-180,98v172,41,264,91,322,220v77,170,32,353,-83,482v-145,162,-458,164,-744,89r0,-184v141,56,251,84,332,84v180,0,320,-120,320,-296v0,-85,-34,-156,-92,-220v-66,-72,-240,-98,-423,-92r0,-133v167,3,332,-21,393,-88v55,-60,86,-125,86,-202v0,-149,-107,-227,-272,-227v-97,0,-205,28,-324,83r0,-172v138,-47,194,-57,337,-59"},"4":{"d":"771,0r0,-419r-666,0r0,-149r666,-912r185,0r0,900r198,0r0,161r-198,0r0,419r-185,0xm298,-580r486,0r0,-658"},"5":{"d":"842,-433v1,-270,-262,-364,-568,-327r0,-720r749,0r0,172r-576,0r0,390v208,0,359,49,459,142v185,172,194,496,14,678v-133,134,-420,165,-671,104r0,-176v98,39,191,59,280,59v202,0,312,-137,313,-322"},"6":{"d":"740,-1518v143,1,183,16,332,56r0,172v-139,-53,-254,-80,-344,-80v-132,0,-228,56,-287,167v-59,111,-89,257,-89,436v86,-114,177,-183,355,-183v268,0,439,185,441,458v1,201,-103,378,-231,460v-71,45,-157,69,-260,69v-176,0,-305,-73,-392,-215v-144,-234,-167,-628,-66,-928v81,-241,228,-414,541,-412xm672,-111v177,0,278,-146,278,-342v0,-209,-102,-355,-284,-355v-67,0,-134,25,-203,73v-147,101,-117,332,-31,490v48,89,127,134,240,134"},"7":{"d":"308,0v53,-302,126,-410,272,-645r404,-650r-762,0r0,-185r950,0r0,185v-221,323,-379,598,-526,931v-58,132,-94,253,-111,364r-227,0"},"8":{"d":"177,-364v0,-210,127,-346,294,-442v-146,-108,-211,-152,-217,-334v-7,-229,197,-378,444,-378v221,0,409,118,410,320v0,65,-19,130,-58,194v-39,64,-111,129,-218,198v124,61,210,125,260,192v50,67,75,144,75,231v-3,248,-222,420,-500,420v-284,0,-490,-156,-490,-401xm678,-1369v-137,0,-246,75,-246,192v0,49,17,95,52,139v35,44,115,100,238,170v105,-71,207,-160,207,-303v0,-124,-114,-198,-251,-198xm672,-111v152,0,292,-89,292,-241v0,-54,-17,-100,-46,-140v-44,-62,-238,-174,-340,-234v-143,119,-196,149,-204,330v-8,170,130,285,298,285"},"9":{"d":"944,-703v-94,115,-163,185,-341,185v-179,0,-322,-112,-389,-237v-80,-150,-73,-345,6,-499v79,-154,205,-263,423,-263v177,0,306,72,392,213v150,244,165,643,51,938v-93,243,-244,403,-552,403v-77,0,-178,-15,-301,-46r0,-167v125,43,232,65,320,65v302,-1,382,-289,391,-592xm631,-1370v-185,0,-278,149,-278,345v0,203,96,364,286,365v148,1,311,-126,302,-290v-11,-213,-88,-420,-310,-420"},":":{"d":"225,0r0,-197r197,0r0,197r-197,0xm225,-888r0,-198r197,0r0,198r-197,0","w":648},";":{"d":"225,247v71,-39,70,-117,71,-247r-71,0r0,-197r197,0v-1,113,5,284,-22,353v-28,72,-97,147,-175,165r0,-74xm225,-888r0,-198r197,0r0,198r-197,0","w":648},"<":{"d":"1191,-49r-1086,-543r1086,-543r0,173r-755,370r755,370r0,173"},"=":{"d":"105,-345r0,-148r1086,0r0,148r-1086,0xm105,-691r0,-148r1086,0r0,148r-1086,0"},">":{"d":"105,-1135r1086,543r-1086,543r0,-173r755,-370r-755,-370r0,-173"},"?":{"d":"250,0r0,-197r197,0r0,197r-197,0xm384,-1518v278,0,503,161,428,440v-31,114,-127,175,-214,265v-106,109,-146,128,-151,308r0,110r-197,0v-4,-215,33,-284,147,-413v60,-69,169,-195,191,-246v18,-41,29,-81,29,-122v-2,-127,-114,-193,-257,-193v-101,0,-208,25,-323,74r0,-167v123,-37,239,-56,347,-56","w":864},"@":{"d":"464,-139v171,86,420,95,593,-7r36,102v-120,54,-238,81,-353,81v-384,1,-647,-248,-647,-613v0,-153,46,-304,131,-459v146,-265,441,-482,804,-482v266,0,466,132,570,310v108,185,112,420,14,617v-82,165,-228,287,-445,294v-147,5,-198,-91,-146,-220r40,-126r-12,0v-62,119,-127,206,-195,262v-68,56,-132,84,-192,84v-122,0,-193,-101,-193,-224v0,-216,152,-479,280,-576v142,-107,320,-71,539,-76r-126,636v-16,67,-6,132,70,129v136,-6,251,-135,297,-244v29,-67,44,-141,44,-222v0,-306,-262,-539,-560,-534v-311,5,-574,200,-697,425v-117,214,-161,438,-44,654v46,83,109,147,192,189xm623,-561v-1,71,23,142,83,142v37,0,88,-36,155,-107v67,-71,137,-174,212,-307r39,-195v-185,-70,-328,-30,-408,135v-54,112,-81,223,-81,332","w":1758},"A":{"d":"17,0r587,-1480r208,0r578,1480r-227,0r-161,-410r-627,0r-163,410r-195,0xm436,-566r505,0r-252,-638","w":1413},"B":{"d":"1034,-1154v0,191,-125,322,-304,383v168,52,258,108,324,237v59,115,52,251,-14,356v-83,133,-180,178,-413,178r-436,0r0,-1480r384,0v167,0,286,32,355,96v69,64,104,141,104,230xm834,-262v137,-232,-123,-451,-376,-435r-59,0r0,540v235,-5,365,14,435,-105xm819,-1107v0,-173,-128,-216,-338,-216r-82,0r0,493v247,16,420,-69,420,-277","w":1178},"C":{"d":"854,-127v196,-4,303,-51,449,-129r0,180v-145,76,-270,113,-478,113v-249,0,-431,-74,-547,-221v-116,-147,-174,-332,-174,-555v0,-461,249,-778,732,-778v132,0,287,22,465,65r0,197v-231,-75,-267,-105,-469,-105v-177,0,-306,60,-386,180v-80,120,-119,268,-119,443v0,349,184,616,527,610","w":1417},"D":{"d":"191,0r0,-1480v316,6,734,-30,924,82v190,111,315,324,314,623v-2,302,-116,541,-309,669v-105,69,-249,106,-434,106r-495,0xm401,-157v207,-1,467,7,583,-67v198,-126,290,-539,172,-816v-91,-212,-227,-286,-582,-283r-173,0r0,1166","w":1534},"E":{"d":"191,0r0,-1480r827,0r0,157r-617,0r0,475r517,0r0,155r-517,0r0,536r660,0r0,157r-870,0","w":1110},"F":{"d":"191,0r0,-1480r827,0r0,157r-617,0r0,496r518,0r0,155r-518,0r0,672r-210,0","w":1098},"G":{"d":"547,-211v125,98,365,119,547,54r0,-482r209,0r0,599v-213,59,-264,75,-469,77v-356,3,-541,-130,-650,-373v-54,-120,-80,-255,-80,-404v2,-459,250,-777,730,-777v149,0,304,22,467,67r0,194v-232,-75,-268,-104,-469,-104v-178,0,-305,62,-386,182v-126,186,-155,498,-68,738v34,92,90,168,169,229","w":1480},"H":{"d":"191,0r0,-1480r210,0r0,624r704,0r0,-624r210,0r0,1480r-210,0r0,-699r-704,0r0,699r-210,0","w":1505},"I":{"d":"190,0r0,-1480r210,0r0,1480r-210,0","w":590},"J":{"d":"453,-187v3,325,-151,479,-457,483v-47,0,-107,-7,-180,-21r0,-186v157,53,335,67,398,-63v18,-37,29,-105,29,-206r0,-1300r210,0r0,1293","w":637},"K":{"d":"191,0r0,-1480r197,0r0,728r599,-728r211,0r-580,706r683,774r-266,0r-647,-750r0,750r-197,0","w":1337},"L":{"d":"191,0r0,-1480r210,0r0,1323r666,0r0,157r-876,0","w":1092},"M":{"d":"191,0r0,-1480r291,0r410,1145r422,-1145r260,0r0,1480r-196,0r0,-1204r-408,1105r-203,0r-396,-1108r0,1207r-180,0","w":1764},"N":{"d":"191,0r0,-1480r206,0r745,1143r0,-1143r180,0r0,1480r-205,0r-746,-1143r0,1143r-180,0","w":1513},"O":{"d":"1488,-740v0,454,-237,777,-692,777v-455,0,-692,-321,-692,-777v0,-453,240,-777,692,-777v452,0,692,323,692,777xm327,-742v0,350,145,622,469,622v323,0,469,-274,469,-622v0,-348,-148,-618,-469,-618v-321,0,-469,271,-469,618","w":1591},"P":{"d":"1096,-1092v0,378,-298,520,-697,504r0,588r-208,0r0,-1480v226,5,567,-22,711,42v123,54,194,170,194,346xm484,-747v249,7,391,-116,391,-330v0,-111,-45,-170,-122,-213v-57,-32,-234,-34,-354,-33r0,576r85,0","w":1132},"Q":{"d":"1488,-737v0,338,-130,586,-379,706v170,75,346,128,529,160r-133,167v-233,-75,-428,-165,-585,-269v-525,70,-816,-276,-816,-767v0,-454,240,-777,692,-777v454,0,692,323,692,780xm327,-742v0,350,145,622,469,622v322,0,469,-271,469,-620v0,-350,-147,-620,-469,-620v-321,0,-469,271,-469,618","w":1591},"R":{"d":"1078,-1113v0,219,-123,350,-298,420r494,693r-258,0r-421,-626r-196,0r0,626r-208,0r0,-1480r448,0v166,0,281,38,344,112v63,74,95,159,95,255xm399,-783v170,6,321,-25,383,-97v110,-126,107,-352,-44,-414v-63,-26,-225,-30,-339,-29r0,540"},"S":{"d":"482,37v-164,0,-212,-19,-382,-65r0,-208v185,81,232,106,412,116v208,12,339,-193,236,-371v-31,-54,-202,-155,-296,-208v-136,-77,-227,-148,-274,-212v-88,-118,-92,-282,-14,-410v74,-120,191,-197,384,-196v114,0,234,19,361,57r0,192v-173,-63,-194,-84,-349,-92v-180,-9,-310,151,-222,302v63,109,202,159,319,229v136,81,230,149,275,214v114,165,82,392,-62,525v-90,83,-217,127,-388,127","w":1103},"T":{"d":"543,0r0,-1323r-525,0r0,-157r1260,0r0,157r-525,0r0,1323r-210,0"},"U":{"d":"734,-120v252,0,323,-131,323,-419r0,-941r184,0r0,938v1,296,-62,412,-227,516v-139,87,-459,80,-597,-2v-171,-102,-239,-231,-238,-520r0,-932r210,0r0,934v-2,292,92,426,345,426","w":1419},"V":{"d":"595,0r-559,-1480r210,0r458,1212r442,-1212r184,0r-537,1480r-198,0","w":1339},"W":{"d":"383,0r-381,-1480r202,0r303,1169r279,-1169r202,0r264,1153r326,-1153r171,0r-415,1480r-209,0r-261,-1141r-273,1141r-208,0","w":1752},"X":{"d":"16,0r491,-743r-467,-737r248,0r356,558r374,-558r198,0r-473,715r485,765r-248,0r-376,-587r-389,587r-199,0","w":1282},"Y":{"d":"511,0r0,-618r-494,-862r240,0r384,668r414,-668r195,0r-529,858r0,622r-210,0","w":1276},"Z":{"d":"95,0r0,-168r795,-1155r-746,0r0,-157r998,0r0,157r-795,1155r795,0r0,168r-1047,0","w":1238},"[":{"d":"197,296r0,-1875r395,0r0,148r-222,0r0,1579r222,0r0,148r-395,0","w":666},"\\":{"d":"837,296r-825,-1875r162,0r825,1875r-162,0","w":1012},"]":{"d":"469,-1579r0,1875r-395,0r0,-148r222,0r0,-1579r-222,0r0,-148r395,0","w":666},"^":{"d":"648,-1149r-377,754r-166,0r543,-1085r543,1085r-166,0"},"_":{"d":"86,148r0,-148r851,0r0,148r-851,0","w":1024},"`":{"d":"629,-1283r-271,-296r222,0r222,296r-173,0","w":1258},"a":{"d":"933,25v-97,0,-156,-61,-176,-163v-96,87,-193,163,-341,163v-160,0,-313,-117,-313,-298v0,-107,47,-194,138,-265v96,-75,274,-109,487,-104r0,-131v4,-143,-66,-189,-197,-189v-102,0,-213,32,-334,96r0,-163v133,-54,258,-81,375,-81v221,0,353,87,353,337r0,492v-5,127,31,179,142,165r14,109v-45,21,-94,32,-148,32xm472,-136v108,-4,184,-51,256,-109r0,-281v-205,-16,-421,47,-428,221v-4,91,82,171,172,169","w":1131},"b":{"d":"714,25v-158,-3,-240,-52,-320,-148r-24,135r-173,0r0,-1591r197,0r0,697v72,-135,177,-226,363,-228v282,-3,421,240,421,534v0,315,-163,606,-464,601xm716,-938v-146,0,-236,83,-322,179r0,500v111,93,142,136,290,136v211,0,284,-208,284,-433v-1,-209,-61,-382,-252,-382","w":1289},"c":{"d":"333,-543v0,225,128,410,340,409v90,0,183,-23,278,-69r0,170v-237,69,-414,93,-596,-21v-151,-95,-244,-263,-244,-495v0,-330,189,-561,544,-561v85,0,180,12,284,35r0,165v-111,-33,-202,-49,-272,-49v-222,0,-334,199,-334,416","w":1049},"d":{"d":"574,-1110v158,3,240,51,320,148r0,-617r198,0r0,1579r-198,0r0,-204v-71,135,-177,227,-362,229v-281,3,-421,-240,-421,-534v0,-316,162,-606,463,-601xm573,-148v145,0,236,-84,321,-179r0,-500v-112,-93,-142,-135,-290,-135v-211,0,-283,207,-283,433v1,210,60,381,252,381","w":1289},"e":{"d":"691,-125v131,0,169,-20,302,-66r0,156v-132,40,-245,60,-339,60v-431,0,-664,-471,-479,-864v77,-163,196,-272,411,-272v301,0,431,252,411,599r-685,0v19,178,69,276,184,344v50,30,116,43,195,43xm800,-660v3,-189,-69,-303,-226,-303v-172,0,-238,125,-253,303r479,0","w":1141},"f":{"d":"600,-1456v-131,0,-173,55,-168,219r0,151r271,0r0,148r-271,0r0,938r-198,0r0,-938r-154,0r0,-148r154,0v-1,-122,-2,-266,34,-340v51,-104,157,-178,319,-178v67,0,142,11,226,33r0,156v-89,-27,-160,-41,-213,-41","w":753},"g":{"d":"581,-1110v157,0,231,53,313,148r0,-124r198,0r0,790v0,230,-21,387,-58,472v-83,194,-311,265,-590,237v-105,-11,-145,-20,-243,-52r23,-171v114,54,227,81,338,81v242,0,328,-127,332,-353r0,-171v-56,115,-181,228,-356,228v-149,0,-257,-54,-325,-161v-68,-107,-102,-228,-102,-364v0,-310,159,-560,470,-560xm572,-197v148,-3,239,-83,322,-179r0,-451v-74,-76,-155,-135,-283,-135v-200,0,-293,179,-290,411v2,194,63,358,251,354","w":1277},"h":{"d":"775,-1110v188,-3,310,133,310,330r0,780r-197,0r0,-716v-1,-127,-9,-167,-76,-204v-77,-43,-151,-17,-234,25v-57,29,-118,94,-184,192r0,703r-197,0r0,-1579r197,0r0,697v83,-122,206,-225,381,-228","w":1271},"i":{"d":"197,0r0,-1086r197,0r0,1086r-197,0xm197,-1283r0,-197r197,0r0,197r-197,0","w":592},"j":{"d":"-154,369r0,-156v136,51,194,87,300,39v84,-38,82,-89,82,-252r0,-1086r198,0r0,1086v0,207,-41,302,-164,372v-124,71,-273,58,-416,-3xm228,-1283r0,-197r198,0r0,197r-198,0","w":623},"k":{"d":"197,0r0,-1579r197,0r0,1020r460,-527r212,0r-439,507r530,579r-252,0r-511,-557r0,557r-197,0","w":1197},"l":{"d":"197,0r0,-1579r197,0r0,1579r-197,0","w":592},"m":{"d":"863,-759v15,-192,-162,-226,-293,-144v-48,30,-107,87,-176,175r0,728r-197,0r0,-1086r197,0r0,204v74,-113,192,-228,370,-228v102,0,166,36,220,88v29,28,54,75,77,140v72,-116,189,-229,364,-229v177,0,302,109,302,321r0,790r-198,0r0,-759v14,-191,-160,-225,-293,-143v-49,30,-108,87,-175,174r0,728r-198,0r0,-759","w":1912},"n":{"d":"775,-1110v188,-3,310,133,310,330r0,780r-197,0r0,-716v-1,-127,-9,-167,-76,-204v-77,-43,-151,-17,-234,25v-57,29,-118,94,-184,192r0,703r-197,0r0,-1086r197,0r0,204v83,-122,206,-225,381,-228","w":1271},"o":{"d":"1147,-543v0,333,-175,568,-518,568v-341,0,-518,-234,-518,-568v0,-332,175,-567,518,-567v342,0,518,233,518,567xm321,-543v0,240,92,420,308,420v217,0,309,-180,309,-420v0,-241,-92,-419,-309,-419v-216,0,-308,179,-308,419","w":1258},"p":{"d":"1178,-576v-2,365,-198,672,-596,585v-59,-13,-121,-55,-188,-132r0,518r-197,0r0,-1481r197,0r0,204v72,-135,177,-226,363,-228v282,-3,423,240,421,534xm716,-938v-146,0,-236,83,-322,179r0,500v111,93,142,136,290,136v211,0,284,-208,284,-433v-1,-209,-61,-382,-252,-382","w":1289},"q":{"d":"574,-1110v158,3,240,51,320,148r0,-124r198,0r0,1481r-198,0r0,-599v-71,135,-177,227,-362,229v-281,3,-421,-240,-421,-534v0,-316,162,-606,463,-601xm573,-148v145,0,236,-84,321,-179r0,-500v-112,-93,-142,-135,-290,-135v-211,0,-283,207,-283,433v1,210,60,381,252,381","w":1289},"r":{"d":"707,-938v-158,0,-243,101,-313,222r0,716r-197,0r0,-1086r197,0r0,204v71,-139,201,-250,403,-223r0,184v-33,-11,-63,-17,-90,-17","w":838},"s":{"d":"887,-302v0,213,-180,325,-402,327v-90,0,-199,-21,-328,-63r0,-181v129,64,241,96,336,96v136,0,250,-124,169,-245v-33,-49,-169,-99,-244,-132v-148,-65,-255,-129,-255,-305v0,-194,154,-305,376,-305v67,0,180,15,266,33r0,164v-110,-33,-198,-49,-263,-49v-142,0,-241,113,-157,217v34,42,141,83,207,111v127,54,208,107,243,160v35,53,52,110,52,172","w":1044},"t":{"d":"402,-336v1,145,47,211,184,213v26,0,58,-4,95,-13r0,136v-255,82,-476,-37,-476,-300r0,-638r-136,0r0,-148r136,0r0,-197r197,-19r0,216r284,0r0,148r-284,0r0,602","w":766},"u":{"d":"495,25v-188,3,-310,-134,-310,-331r0,-780r197,0r0,716v1,128,9,167,76,205v77,43,151,17,234,-25v57,-29,118,-94,184,-192r0,-704r197,0r0,1086r-197,0r0,-204v-84,122,-205,226,-381,229","w":1271},"v":{"d":"422,0r-404,-1086r197,0r316,845r333,-845r184,0r-429,1086r-197,0","w":1060},"w":{"d":"323,0r-311,-1086r193,0r238,841r257,-841r197,0r225,841r273,-841r169,0r-354,1086r-198,0r-230,-841r-260,841r-199,0","w":1578},"x":{"d":"88,0r413,-561r-401,-525r234,0r317,418r287,-418r192,0r-376,551r409,535r-234,0r-327,-430r-316,430r-198,0","w":1256},"y":{"d":"260,395r176,-395r-420,-1086r213,0r311,818r332,-818r186,0r-593,1481r-205,0","w":1070},"z":{"d":"123,0r0,-148r672,-790r-641,0r0,-148r884,0r0,148r-672,790r685,0r0,148r-928,0","w":1174},"{":{"d":"345,25v-4,86,94,130,186,123r0,148v-166,-9,-250,-58,-315,-159v-102,-158,11,-362,11,-545v0,-126,-72,-170,-202,-160r0,-148v130,9,203,-34,202,-161v-1,-183,-113,-385,-11,-543v64,-102,149,-150,315,-159r0,148v-92,-6,-190,36,-186,124v4,102,44,224,41,354v-4,158,-54,231,-147,311v94,83,144,152,147,314v3,130,-36,249,-41,353","w":666},"|":{"d":"197,296r0,-1875r148,0r0,1875r-148,0","w":543},"}":{"d":"322,-1309v3,-85,-96,-129,-186,-122r0,-148v166,10,251,57,316,159v102,158,-11,362,-12,545v-1,125,72,169,202,159r0,148v-130,-10,-203,34,-202,162v1,183,114,385,12,543v-65,101,-151,150,-316,159r0,-148v93,6,186,-37,186,-123v0,-106,-45,-224,-42,-356v4,-158,54,-228,147,-311v-93,-82,-144,-152,-147,-312v-3,-133,38,-247,42,-355","w":666},"~":{"d":"449,-607v-114,-55,-202,30,-196,163r-148,0v-7,-211,163,-391,377,-310v115,43,240,120,349,177v122,64,221,-22,212,-163r148,0v-9,207,-91,333,-266,333v-117,0,-137,-24,-245,-80"},"\u00c4":{"d":"17,0r587,-1480r208,0r578,1480r-227,0r-161,-410r-627,0r-163,410r-195,0xm436,-566r505,0r-252,-638xm419,-1604r0,-173r173,0r0,173r-173,0xm814,-1604r0,-173r173,0r0,173r-173,0","w":1413},"\u00c5":{"d":"436,-566r505,0r-252,-638xm868,-1603v-1,55,-24,93,-56,123r578,1480r-227,0r-161,-410r-627,0r-163,410r-195,0r587,-1480v-33,-31,-56,-67,-57,-123v-3,-85,77,-160,161,-160v85,0,163,75,160,160xm621,-1603v0,46,41,87,87,87v47,0,86,-40,86,-87v0,-46,-40,-86,-86,-86v-46,0,-87,40,-87,86","w":1413},"\u00c7":{"d":"854,-127v196,-4,303,-51,449,-129r0,180v-146,82,-278,107,-453,112r-41,68v122,29,176,54,184,147v8,99,-119,142,-218,144v-41,0,-94,-11,-159,-34r0,-79v71,27,221,36,231,-45v-10,-61,-89,-89,-169,-99r71,-105v-310,-23,-459,-149,-568,-368v-53,-106,-77,-236,-77,-388v1,-480,243,-794,732,-794v132,0,287,22,465,65r0,197v-231,-75,-267,-105,-469,-105v-177,0,-306,60,-386,180v-80,120,-119,268,-119,443v0,349,184,616,527,610","w":1417},"\u00c9":{"d":"191,0r0,-1480r827,0r0,157r-617,0r0,475r517,0r0,155r-517,0r0,536r660,0r0,157r-870,0xm453,-1604r222,-296r222,0r-271,296r-173,0","w":1110},"\u00d1":{"d":"878,-1762v59,26,113,-3,113,-76r123,0v1,104,-31,165,-86,206v-81,61,-228,12,-294,-28v-67,-40,-156,-51,-163,56r-123,0v5,-137,60,-231,183,-234v95,-3,175,45,247,76xm191,0r0,-1480r206,0r745,1143r0,-1143r180,0r0,1480r-205,0r-746,-1143r0,1143r-180,0","w":1513},"\u00d6":{"d":"1488,-740v0,454,-237,777,-692,777v-455,0,-692,-321,-692,-777v0,-453,240,-777,692,-777v452,0,692,323,692,777xm327,-742v0,350,145,622,469,622v323,0,469,-274,469,-622v0,-348,-148,-618,-469,-618v-321,0,-469,271,-469,618xm512,-1604r0,-173r173,0r0,173r-173,0xm907,-1604r0,-173r173,0r0,173r-173,0","w":1591},"\u00dc":{"d":"734,-120v252,0,323,-131,323,-419r0,-941r184,0r0,938v1,296,-62,412,-227,516v-139,87,-459,80,-597,-2v-171,-102,-239,-231,-238,-520r0,-932r210,0r0,934v-2,292,92,426,345,426xm425,-1604r0,-173r173,0r0,173r-173,0xm820,-1604r0,-173r173,0r0,173r-173,0","w":1419},"\u00e1":{"d":"933,25v-97,0,-156,-61,-176,-163v-96,87,-193,163,-341,163v-160,0,-313,-117,-313,-298v0,-107,47,-194,138,-265v96,-75,274,-109,487,-104r0,-131v4,-143,-66,-189,-197,-189v-102,0,-213,32,-334,96r0,-163v133,-54,258,-81,375,-81v221,0,353,87,353,337r0,492v-5,127,31,179,142,165r14,109v-45,21,-94,32,-148,32xm472,-136v108,-4,184,-51,256,-109r0,-281v-205,-16,-421,47,-428,221v-4,91,82,171,172,169xm419,-1283r222,-296r222,0r-271,296r-173,0","w":1131},"\u00e0":{"d":"933,25v-97,0,-156,-61,-176,-163v-96,87,-193,163,-341,163v-160,0,-313,-117,-313,-298v0,-107,47,-194,138,-265v96,-75,274,-109,487,-104r0,-131v4,-143,-66,-189,-197,-189v-102,0,-213,32,-334,96r0,-163v133,-54,258,-81,375,-81v221,0,353,87,353,337r0,492v-5,127,31,179,142,165r14,109v-45,21,-94,32,-148,32xm472,-136v108,-4,184,-51,256,-109r0,-281v-205,-16,-421,47,-428,221v-4,91,82,171,172,169xm592,-1283r-271,-296r222,0r222,296r-173,0","w":1131},"\u00e2":{"d":"666,-1579r222,296r-173,0r-160,-197r-160,197r-173,0r222,-296r222,0xm933,25v-97,0,-156,-61,-176,-163v-96,87,-193,163,-341,163v-160,0,-313,-117,-313,-298v0,-107,47,-194,138,-265v96,-75,274,-109,487,-104r0,-131v4,-143,-66,-189,-197,-189v-102,0,-213,32,-334,96r0,-163v133,-54,258,-81,375,-81v221,0,353,87,353,337r0,492v-5,127,31,179,142,165r14,109v-45,21,-94,32,-148,32xm472,-136v108,-4,184,-51,256,-109r0,-281v-205,-16,-421,47,-428,221v-4,91,82,171,172,169","w":1131},"\u00e4":{"d":"933,25v-97,0,-156,-61,-176,-163v-96,87,-193,163,-341,163v-160,0,-313,-117,-313,-298v0,-107,47,-194,138,-265v96,-75,274,-109,487,-104r0,-131v4,-143,-66,-189,-197,-189v-102,0,-213,32,-334,96r0,-163v133,-54,258,-81,375,-81v221,0,353,87,353,337r0,492v-5,127,31,179,142,165r14,109v-45,21,-94,32,-148,32xm472,-136v108,-4,184,-51,256,-109r0,-281v-205,-16,-421,47,-428,221v-4,91,82,171,172,169xm284,-1283r0,-173r173,0r0,173r-173,0xm679,-1283r0,-173r173,0r0,173r-173,0","w":1131},"\u00e3":{"d":"665,-1441v59,26,113,-3,113,-76r123,0v1,104,-30,165,-85,206v-81,61,-229,12,-295,-28v-67,-40,-156,-51,-163,56r-123,0v5,-137,60,-231,183,-234v95,-3,175,45,247,76xm933,25v-97,0,-156,-61,-176,-163v-96,87,-193,163,-341,163v-160,0,-313,-117,-313,-298v0,-107,47,-194,138,-265v96,-75,274,-109,487,-104r0,-131v4,-143,-66,-189,-197,-189v-102,0,-213,32,-334,96r0,-163v133,-54,258,-81,375,-81v221,0,353,87,353,337r0,492v-5,127,31,179,142,165r14,109v-45,21,-94,32,-148,32xm472,-136v108,-4,184,-51,256,-109r0,-281v-205,-16,-421,47,-428,221v-4,91,82,171,172,169","w":1131},"\u00e5":{"d":"729,-1443v0,86,-76,160,-161,160v-86,0,-160,-74,-160,-160v0,-86,75,-161,160,-161v86,0,161,74,161,161xm482,-1443v0,46,40,86,86,86v46,0,86,-40,86,-86v0,-47,-39,-87,-86,-87v-47,0,-86,40,-86,87xm933,25v-97,0,-156,-61,-176,-163v-96,87,-193,163,-341,163v-160,0,-313,-117,-313,-298v0,-107,47,-194,138,-265v96,-75,274,-109,487,-104r0,-131v4,-143,-66,-189,-197,-189v-102,0,-213,32,-334,96r0,-163v133,-54,258,-81,375,-81v221,0,353,87,353,337r0,492v-5,127,31,179,142,165r14,109v-45,21,-94,32,-148,32xm472,-136v108,-4,184,-51,256,-109r0,-281v-205,-16,-421,47,-428,221v-4,91,82,171,172,169","w":1131},"\u00e7":{"d":"333,-543v0,224,129,410,340,409v89,0,182,-23,278,-69r0,170v-108,30,-165,51,-287,58r-51,83v105,27,157,76,157,145v0,129,-182,163,-311,120r0,-77v69,18,168,8,167,-65v0,-45,-41,-75,-123,-90r72,-118v-286,-39,-464,-245,-464,-568v0,-338,187,-574,549,-565v123,3,137,10,279,35r0,165v-111,-33,-202,-49,-272,-49v-222,0,-334,199,-334,416","w":1049},"\u00e9":{"d":"691,-125v131,0,169,-20,302,-66r0,156v-132,40,-245,60,-339,60v-431,0,-664,-471,-479,-864v77,-163,196,-272,411,-272v301,0,431,252,411,599r-685,0v19,178,69,276,184,344v50,30,116,43,195,43xm800,-660v3,-189,-69,-303,-226,-303v-172,0,-238,125,-253,303r479,0xm380,-1283r222,-296r222,0r-271,296r-173,0","w":1141},"\u00e8":{"d":"691,-125v131,0,169,-20,302,-66r0,156v-132,40,-245,60,-339,60v-431,0,-664,-471,-479,-864v77,-163,196,-272,411,-272v301,0,431,252,411,599r-685,0v19,178,69,276,184,344v50,30,116,43,195,43xm800,-660v3,-189,-69,-303,-226,-303v-172,0,-238,125,-253,303r479,0xm590,-1283r-271,-296r222,0r222,296r-173,0","w":1141},"\u00ea":{"d":"714,-1579r222,296r-173,0r-160,-197r-160,197r-173,0r222,-296r222,0xm691,-125v131,0,169,-20,302,-66r0,156v-132,40,-245,60,-339,60v-431,0,-664,-471,-479,-864v77,-163,196,-272,411,-272v301,0,431,252,411,599r-685,0v19,178,69,276,184,344v50,30,116,43,195,43xm800,-660v3,-189,-69,-303,-226,-303v-172,0,-238,125,-253,303r479,0","w":1141},"\u00eb":{"d":"691,-125v131,0,169,-20,302,-66r0,156v-132,40,-245,60,-339,60v-431,0,-664,-471,-479,-864v77,-163,196,-272,411,-272v301,0,431,252,411,599r-685,0v19,178,69,276,184,344v50,30,116,43,195,43xm800,-660v3,-189,-69,-303,-226,-303v-172,0,-238,125,-253,303r479,0xm306,-1283r0,-173r173,0r0,173r-173,0xm701,-1283r0,-173r173,0r0,173r-173,0","w":1141},"\u00ed":{"d":"197,0r0,-1086r197,0r0,1086r-197,0xm123,-1283r222,-296r222,0r-271,296r-173,0","w":592},"\u00ec":{"d":"197,0r0,-1086r197,0r0,1086r-197,0xm296,-1283r-271,-296r222,0r222,296r-173,0","w":592},"\u00ee":{"d":"407,-1579r222,296r-173,0r-160,-197r-160,197r-173,0r222,-296r222,0xm197,0r0,-1086r197,0r0,1086r-197,0","w":592},"\u00ef":{"d":"197,0r0,-1086r197,0r0,1086r-197,0xm12,-1283r0,-173r173,0r0,173r-173,0xm407,-1283r0,-173r173,0r0,173r-173,0","w":592},"\u00f1":{"d":"763,-1441v59,26,113,-3,113,-76r123,0v1,104,-30,165,-85,206v-81,61,-229,12,-295,-28v-67,-40,-156,-51,-163,56r-123,0v5,-137,60,-231,183,-234v95,-3,175,45,247,76xm775,-1110v188,-3,310,133,310,330r0,780r-197,0r0,-716v-1,-127,-9,-167,-76,-204v-77,-43,-151,-17,-234,25v-57,29,-118,94,-184,192r0,703r-197,0r0,-1086r197,0r0,204v83,-122,206,-225,381,-228","w":1271},"\u00f3":{"d":"1147,-543v0,333,-175,568,-518,568v-341,0,-518,-234,-518,-568v0,-332,175,-567,518,-567v342,0,518,233,518,567xm321,-543v0,240,92,420,308,420v217,0,309,-180,309,-420v0,-241,-92,-419,-309,-419v-216,0,-308,179,-308,419xm456,-1283r222,-296r222,0r-271,296r-173,0","w":1258},"\u00f2":{"d":"1147,-543v0,333,-175,568,-518,568v-341,0,-518,-234,-518,-568v0,-332,175,-567,518,-567v342,0,518,233,518,567xm321,-543v0,240,92,420,308,420v217,0,309,-180,309,-420v0,-241,-92,-419,-309,-419v-216,0,-308,179,-308,419xm629,-1283r-271,-296r222,0r222,296r-173,0","w":1258},"\u00f4":{"d":"740,-1579r222,296r-173,0r-160,-197r-160,197r-173,0r222,-296r222,0xm1147,-543v0,333,-175,568,-518,568v-341,0,-518,-234,-518,-568v0,-332,175,-567,518,-567v342,0,518,233,518,567xm321,-543v0,240,92,420,308,420v217,0,309,-180,309,-420v0,-241,-92,-419,-309,-419v-216,0,-308,179,-308,419","w":1258},"\u00f6":{"d":"1147,-543v0,333,-175,568,-518,568v-341,0,-518,-234,-518,-568v0,-332,175,-567,518,-567v342,0,518,233,518,567xm321,-543v0,240,92,420,308,420v217,0,309,-180,309,-420v0,-241,-92,-419,-309,-419v-216,0,-308,179,-308,419xm345,-1283r0,-173r173,0r0,173r-173,0xm740,-1283r0,-173r173,0r0,173r-173,0","w":1258},"\u00f5":{"d":"726,-1441v59,26,113,-3,113,-76r123,0v1,104,-31,165,-86,206v-81,61,-228,12,-294,-28v-67,-40,-156,-51,-163,56r-123,0v5,-137,60,-231,183,-234v95,-3,175,45,247,76xm1147,-543v0,333,-175,568,-518,568v-341,0,-518,-234,-518,-568v0,-332,175,-567,518,-567v342,0,518,233,518,567xm321,-543v0,240,92,420,308,420v217,0,309,-180,309,-420v0,-241,-92,-419,-309,-419v-216,0,-308,179,-308,419","w":1258},"\u00fa":{"d":"495,25v-188,3,-310,-134,-310,-331r0,-780r197,0r0,716v1,128,9,167,76,205v77,43,151,17,234,-25v57,-29,118,-94,184,-192r0,-704r197,0r0,1086r-197,0r0,-204v-84,122,-205,226,-381,229xm456,-1283r222,-296r222,0r-271,296r-173,0","w":1271},"\u00f9":{"d":"495,25v-188,3,-310,-134,-310,-331r0,-780r197,0r0,716v1,128,9,167,76,205v77,43,151,17,234,-25v57,-29,118,-94,184,-192r0,-704r197,0r0,1086r-197,0r0,-204v-84,122,-205,226,-381,229xm629,-1283r-271,-296r222,0r222,296r-173,0","w":1271},"\u00fb":{"d":"740,-1579r222,296r-173,0r-160,-197r-160,197r-173,0r222,-296r222,0xm495,25v-188,3,-310,-134,-310,-331r0,-780r197,0r0,716v1,128,9,167,76,205v77,43,151,17,234,-25v57,-29,118,-94,184,-192r0,-704r197,0r0,1086r-197,0r0,-204v-84,122,-205,226,-381,229","w":1271},"\u00fc":{"d":"495,25v-188,3,-310,-134,-310,-331r0,-780r197,0r0,716v1,128,9,167,76,205v77,43,151,17,234,-25v57,-29,118,-94,184,-192r0,-704r197,0r0,1086r-197,0r0,-204v-84,122,-205,226,-381,229xm345,-1283r0,-173r173,0r0,173r-173,0xm740,-1283r0,-173r173,0r0,173r-173,0","w":1271},"\u00b0":{"d":"456,-1345v0,90,-79,173,-172,173v-93,0,-173,-83,-173,-173v0,-89,80,-172,173,-172v93,0,172,83,172,172xm197,-1345v0,47,45,87,87,87v41,0,86,-41,86,-87v0,-46,-46,-86,-86,-86v-41,0,-87,40,-87,86","w":567},"\u00a2":{"d":"1046,-231v-80,33,-195,55,-284,58r0,173r-99,0r0,-173v-125,-11,-162,-38,-237,-89v-176,-121,-279,-414,-190,-683v65,-197,186,-323,427,-350r0,-185r99,0r0,185v89,4,183,19,284,46r0,166v-118,-40,-213,-63,-284,-70r0,840v90,-3,210,-30,284,-68r0,150xm663,-1144v-180,27,-243,194,-242,412v1,225,74,353,242,408r0,-820"},"\u00a3":{"d":"654,-589v0,234,-51,308,-173,416r611,0r0,173r-845,0r0,-173v141,-49,209,-130,210,-316r0,-227r-179,0r0,-148r179,0v1,-164,-9,-370,48,-466v65,-110,175,-188,345,-187v69,0,145,10,227,30r0,167v-83,-33,-162,-49,-239,-49v-136,0,-184,70,-184,230r0,275r216,0r0,148r-216,0r0,127"},"\u00a7":{"d":"611,334v-174,0,-213,-21,-390,-74r0,-180v143,60,236,99,411,105v164,6,358,-97,270,-253v-46,-82,-74,-76,-210,-134r-177,-75v-193,-83,-289,-195,-289,-336v0,-145,60,-211,146,-299v-89,-58,-141,-114,-141,-240v0,-97,39,-182,117,-255v151,-140,441,-129,698,-63r0,160v-135,-39,-251,-59,-348,-59v-145,0,-288,61,-288,185v0,113,62,132,175,178r136,55v155,62,254,120,299,173v45,54,67,118,67,193v0,150,-46,187,-149,308v101,55,164,132,164,268v0,86,-38,165,-115,236v-77,71,-202,107,-376,107xm840,-341v73,-100,110,-211,34,-305v-60,-74,-285,-148,-402,-200v-79,98,-109,214,-22,308v75,80,268,142,390,197"},"\u00b6":{"d":"635,-740v-244,-14,-420,-163,-419,-414v1,-136,52,-238,148,-286v128,-63,460,-34,666,-40r0,1776r-123,0r0,-1653r-148,0r0,1653r-124,0r0,-1036"},"\u00df":{"d":"560,-1456v-122,2,-166,88,-166,222r0,1234r-197,0r0,-1151v2,-233,24,-318,149,-403v52,-35,125,-50,218,-50v247,0,412,142,346,376v-12,43,-130,202,-172,266v-23,37,-27,76,-6,114v36,63,189,175,259,235v114,98,173,202,173,315v0,187,-130,323,-348,323v-94,0,-188,-19,-282,-58r0,-169v122,53,216,79,282,79v128,0,205,-132,143,-240v-50,-87,-203,-191,-287,-266v-82,-73,-125,-145,-125,-219v0,-163,183,-279,183,-457v0,-96,-71,-152,-170,-151","w":1225},"\u00ae":{"d":"648,-1517v258,0,444,186,444,444v0,257,-186,444,-444,444v-259,0,-444,-187,-444,-444v0,-257,185,-444,444,-444xm303,-1073v0,198,149,345,345,345v196,0,346,-147,346,-345v0,-199,-150,-346,-346,-346v-196,0,-345,147,-345,346xm827,-1194v-1,79,-48,123,-109,155r124,237r-113,0r-113,-216r-48,0r0,216r-99,0r0,-530v162,6,361,-38,358,138xm716,-1185v0,-73,-67,-77,-148,-74r0,167v85,7,148,-18,148,-93"},"\u00a9":{"d":"1256,-62v-235,129,-525,130,-760,0v-214,-118,-397,-367,-397,-678v0,-310,177,-552,390,-674v237,-135,538,-135,775,0v215,123,389,363,389,674v0,310,-184,561,-397,678xm542,-159v191,110,483,109,672,-3v170,-101,328,-333,328,-578v0,-244,-154,-475,-324,-576v-193,-115,-489,-116,-682,0v-170,102,-326,331,-326,576v0,244,164,484,332,581xm623,-739v0,197,117,334,311,332v75,0,151,-21,226,-62r0,124v-94,33,-179,49,-255,49v-259,0,-430,-176,-430,-439v0,-244,159,-443,433,-443v66,0,166,13,252,31r0,123v-91,-37,-172,-56,-244,-56v-188,0,-293,146,-293,341","w":1752},"\u2122":{"d":"247,-740r0,-617r-247,0r0,-123r666,0r0,123r-247,0r0,617r-172,0xm790,-740r0,-740r233,0r156,427r150,-427r213,0r0,740r-173,0r0,-537r-163,475r-118,0r-163,-432r0,494r-135,0","w":1653},"\u00b4":{"d":"456,-1283r222,-296r222,0r-271,296r-173,0","w":1258},"\u00a8":{"d":"345,-1283r0,-173r173,0r0,173r-173,0xm740,-1283r0,-173r173,0r0,173r-173,0","w":1258},"\u00c6":{"d":"18,0r861,-1480r883,0r0,157r-618,0r0,475r518,0r0,155r-518,0r0,536r664,0r0,157r-874,0r0,-414r-483,0r-241,414r-192,0xm540,-569r394,0r0,-671","w":1857},"\u00d8":{"d":"788,37v-179,-3,-274,-41,-402,-113r-88,113r-194,0r173,-226v-120,-145,-173,-307,-173,-550v0,-219,59,-404,178,-554v119,-150,295,-225,529,-225v177,0,277,39,395,114r88,-113r194,0r-173,225v122,137,169,302,173,543v7,450,-253,792,-700,786xm796,-1360v-319,0,-469,273,-469,612v0,145,26,273,79,386r689,-894v-86,-69,-186,-104,-299,-104xm800,-120v361,0,505,-357,457,-761v-13,-107,-26,-151,-70,-239r-689,895v77,71,167,105,302,105","w":1591},"\u00b1":{"d":"105,0r0,-148r1086,0r0,148r-1086,0xm574,-296r0,-370r-469,0r0,-148r469,0r0,-370r148,0r0,370r469,0r0,148r-469,0r0,370r-148,0"},"\u00a5":{"d":"543,0r0,-345r-296,0r0,-148r296,0r0,-99r-296,0r0,-148r296,0r-463,-740r233,0r360,575r388,-575r179,0r-500,740r296,0r0,148r-296,0r0,99r296,0r0,148r-296,0r0,345r-197,0"},"\u00b5":{"d":"572,25v-74,0,-131,-19,-178,-50r0,420r-197,0r0,-1481r197,0r0,716v-5,144,65,210,182,210v151,0,233,-106,312,-222r0,-704r197,0r0,1086r-197,0r0,-204v-77,122,-158,229,-316,229","w":1283},"\u00aa":{"d":"731,-972v0,85,22,108,93,107r0,117v-115,39,-211,24,-256,-74v-61,64,-138,103,-253,106v-137,4,-243,-94,-243,-219v0,-227,226,-290,486,-280v12,-122,-53,-179,-163,-179v-88,0,-180,28,-276,83r0,-147v175,-73,478,-101,576,40v60,86,36,300,36,446xm353,-838v78,-2,160,-44,205,-97r0,-157v-160,-5,-306,19,-313,150v-3,63,49,106,108,104","w":864},"\u00ba":{"d":"802,-1117v0,220,-126,401,-370,401v-244,0,-370,-180,-370,-400v0,-220,126,-401,370,-401v244,0,370,180,370,400xm247,-1117v0,163,56,278,185,278v129,0,185,-116,185,-278v0,-161,-55,-277,-185,-277v-128,0,-185,117,-185,277","w":864},"\u00e6":{"d":"1239,25v-198,-2,-346,-89,-430,-218v-105,118,-212,218,-393,218v-160,0,-313,-117,-313,-298v0,-107,47,-194,138,-265v96,-75,274,-109,487,-104r0,-131v4,-143,-66,-189,-197,-189v-102,0,-213,32,-334,96r0,-163v236,-101,532,-127,680,40v76,-80,160,-119,303,-121v202,-3,331,117,379,275v26,83,39,191,39,323r-672,0v13,180,59,269,169,341v50,33,116,48,196,48v132,0,180,-19,307,-71r0,157v-129,41,-248,62,-359,62xm472,-136v108,-4,184,-51,256,-109r0,-281v-205,-16,-421,47,-428,221v-4,91,82,171,172,169xm1388,-648v4,-200,-60,-315,-214,-315v-163,0,-230,138,-242,315r456,0","w":1743},"\u00f8":{"d":"1147,-543v0,331,-175,570,-516,568v-101,0,-195,-24,-282,-71r-53,71r-185,0r127,-169v-85,-114,-127,-247,-127,-398v0,-332,175,-571,517,-568v101,0,195,23,282,70r52,-70r185,0r-127,169v85,113,127,246,127,398xm633,-962v-216,0,-315,177,-312,416v0,81,13,160,40,237r444,-594v-52,-39,-109,-59,-172,-59xm625,-123v217,-3,316,-177,313,-417v0,-81,-14,-160,-41,-237r-444,594v53,40,110,60,172,60","w":1258},"\u00bf":{"d":"614,-1086r0,198r-198,0r0,-198r198,0xm479,432v-277,0,-500,-159,-427,-438v30,-114,125,-177,213,-267v99,-100,147,-133,151,-307r0,-111r198,0v4,215,-34,286,-147,414v-61,68,-169,193,-191,245v-18,41,-29,82,-29,123v3,127,113,193,257,193v99,0,207,-25,323,-75r0,167v-124,37,-240,56,-348,56","w":864},"\u00a1":{"d":"422,-1086r0,198r-197,0r0,-198r197,0xm398,-691r24,790r0,296r-197,0r0,-296r25,-790r148,0","w":648},"\u00ac":{"d":"105,-691r0,-148r1086,0r0,494r-148,0r0,-346r-938,0"},"\u0192":{"d":"237,296r201,-1012r-166,0r0,-148r196,0r21,-106v97,-457,307,-621,724,-518r-30,156v-137,-49,-283,-59,-375,31v-75,74,-109,290,-139,437r189,0r0,148r-218,0r-202,1012r-201,0"},"\u00ab":{"d":"999,-913r-296,370r296,370r-98,74r-395,-444r395,-444xm604,-913r-296,370r296,370r-98,74r-395,-444r395,-444","w":1073},"\u00bb":{"d":"74,-173r296,-370r-296,-370r99,-74r394,444r-394,444xm469,-173r296,-370r-296,-370r98,-74r395,444r-395,444","w":1073},"\u2026":{"d":"247,0r0,-197r197,0r0,197r-197,0xm926,0r0,-197r197,0r0,197r-197,0xm1604,0r0,-197r197,0r0,197r-197,0","w":2048},"\u00a0":{"w":648},"\u00c0":{"d":"17,0r587,-1480r208,0r578,1480r-227,0r-161,-410r-627,0r-163,410r-195,0xm436,-566r505,0r-252,-638xm704,-1604r-271,-296r222,0r222,296r-173,0","w":1413},"\u00c3":{"d":"800,-1762v59,26,113,-3,113,-76r123,0v1,104,-31,165,-86,206v-81,61,-228,12,-294,-28v-67,-40,-156,-51,-163,56r-123,0v5,-137,60,-231,183,-234v95,-3,175,45,247,76xm17,0r587,-1480r208,0r578,1480r-227,0r-161,-410r-627,0r-163,410r-195,0xm436,-566r505,0r-252,-638","w":1413},"\u00d5":{"d":"893,-1762v59,26,113,-3,113,-76r123,0v1,104,-30,165,-85,206v-81,61,-229,12,-295,-28v-67,-40,-156,-51,-163,56r-123,0v5,-137,60,-231,183,-234v95,-3,175,45,247,76xm1488,-740v0,454,-237,777,-692,777v-455,0,-692,-321,-692,-777v0,-453,240,-777,692,-777v452,0,692,323,692,777xm327,-742v0,350,145,622,469,622v323,0,469,-274,469,-622v0,-348,-148,-618,-469,-618v-321,0,-469,271,-469,618","w":1591},"\u0152":{"d":"793,-1517v150,0,235,30,336,94r0,-57r827,0r0,157r-617,0r0,475r517,0r0,155r-517,-6r0,542r660,0r0,157r-870,0r0,-58v-104,63,-220,95,-347,95v-435,0,-678,-329,-678,-777v0,-452,241,-777,689,-777xm327,-740v0,348,146,620,469,620v153,0,236,-63,290,-172v61,-124,43,-419,43,-619v0,-218,-31,-321,-149,-401v-49,-33,-112,-48,-187,-48v-318,3,-466,274,-466,620","w":2048},"\u0153":{"d":"1448,-123v133,0,181,-19,308,-71r0,157v-210,64,-364,87,-568,29v-75,-22,-144,-77,-209,-166v-87,132,-172,199,-359,199v-331,0,-509,-238,-509,-568v0,-329,177,-570,511,-567v189,2,267,77,352,200v76,-134,177,-196,365,-200v200,-4,330,118,378,275v26,83,39,191,39,323r-673,0v14,180,59,268,170,341v50,33,116,48,195,48xm321,-543v0,240,93,420,303,420v119,0,185,-69,224,-167v23,-56,34,-146,34,-270v0,-139,-23,-240,-70,-305v-47,-65,-109,-97,-188,-97v-209,0,-303,181,-303,419xm1546,-648v4,-199,-61,-315,-214,-315v-165,0,-229,137,-242,315r456,0","w":1901},"\u2013":{"d":"105,-543r0,-123r814,0r0,123r-814,0","w":1024},"\u2014":{"d":"99,-543r0,-99r1851,0r0,99r-1851,0","w":2048},"\u201c":{"d":"654,-1505v-71,39,-70,117,-71,247r71,0r0,197r-198,0v1,-114,-5,-285,23,-353v29,-72,96,-146,175,-165r0,74xm308,-1505v-71,39,-68,118,-70,247r70,0r0,197r-197,0v1,-114,-4,-285,23,-353v29,-72,97,-146,174,-165r0,74","w":765},"\u201d":{"d":"111,-1135v71,-39,70,-118,71,-247r-71,0r0,-197r197,0v-1,114,5,284,-22,353v-28,73,-97,146,-175,165r0,-74xm456,-1135v72,-39,69,-117,71,-247r-71,0r0,-197r198,0v-1,114,5,284,-22,353v-29,73,-98,146,-176,165r0,-74","w":765},"\u2018":{"d":"447,-1579r0,74v-46,13,-66,51,-83,97v-9,25,-14,91,-13,150r96,0r0,246r-247,0v1,-169,-10,-377,58,-468v41,-55,101,-90,189,-99","w":648},"\u2019":{"d":"200,-1012r0,-74v47,-14,66,-49,83,-96v10,-26,14,-90,13,-150r-96,0r0,-247r247,0v0,170,10,378,-58,469v-41,55,-102,89,-189,98","w":648},"\u00f7":{"d":"537,-74r0,-222r222,0r0,222r-222,0xm105,-518r0,-148r1086,0r0,148r-1086,0xm537,-888r0,-222r222,0r0,222r-222,0"},"\u00ff":{"d":"260,395r176,-395r-420,-1086r213,0r311,818r332,-818r186,0r-593,1481r-205,0xm265,-1283r0,-173r173,0r0,173r-173,0xm660,-1283r0,-173r173,0r0,173r-173,0","w":1070},"\u0178":{"d":"511,0r0,-618r-494,-862r240,0r384,668r414,-668r195,0r-529,858r0,622r-210,0xm349,-1604r0,-173r173,0r0,173r-173,0xm744,-1604r0,-173r173,0r0,173r-173,0","w":1276},"\u00c2":{"d":"814,-1900r222,296r-173,0r-160,-197r-160,197r-173,0r222,-296r222,0xm17,0r587,-1480r208,0r578,1480r-227,0r-161,-410r-627,0r-163,410r-195,0xm436,-566r505,0r-252,-638","w":1413},"\u00ca":{"d":"737,-1900r222,296r-173,0r-160,-197r-160,197r-173,0r222,-296r222,0xm191,0r0,-1480r827,0r0,157r-617,0r0,475r517,0r0,155r-517,0r0,536r660,0r0,157r-870,0","w":1110},"\u00c1":{"d":"17,0r587,-1480r208,0r578,1480r-227,0r-161,-410r-627,0r-163,410r-195,0xm436,-566r505,0r-252,-638xm531,-1604r222,-296r222,0r-271,296r-173,0","w":1413},"\u00cb":{"d":"191,0r0,-1480r827,0r0,157r-617,0r0,475r517,0r0,155r-517,0r0,536r660,0r0,157r-870,0xm342,-1604r0,-173r173,0r0,173r-173,0xm737,-1604r0,-173r173,0r0,173r-173,0","w":1110},"\u00c8":{"d":"191,0r0,-1480r827,0r0,157r-617,0r0,475r517,0r0,155r-517,0r0,536r660,0r0,157r-870,0xm626,-1604r-271,-296r222,0r222,296r-173,0","w":1110},"\u00cd":{"d":"190,0r0,-1480r210,0r0,1480r-210,0xm122,-1604r222,-296r222,0r-271,296r-173,0","w":590},"\u00ce":{"d":"406,-1900r222,296r-173,0r-160,-197r-160,197r-173,0r222,-296r222,0xm190,0r0,-1480r210,0r0,1480r-210,0","w":590},"\u00cf":{"d":"190,0r0,-1480r210,0r0,1480r-210,0xm11,-1604r0,-173r173,0r0,173r-173,0xm406,-1604r0,-173r173,0r0,173r-173,0","w":590},"\u00cc":{"d":"189,0r0,-1480r210,0r0,1480r-210,0xm294,-1604r-271,-296r222,0r222,296r-173,0","w":590},"\u00d3":{"d":"1488,-740v0,454,-237,777,-692,777v-455,0,-692,-321,-692,-777v0,-453,240,-777,692,-777v452,0,692,323,692,777xm327,-742v0,350,145,622,469,622v323,0,469,-274,469,-622v0,-348,-148,-618,-469,-618v-321,0,-469,271,-469,618xm623,-1604r222,-296r222,0r-271,296r-173,0","w":1591},"\u00d4":{"d":"907,-1900r222,296r-173,0r-160,-197r-160,197r-173,0r222,-296r222,0xm1488,-740v0,454,-237,777,-692,777v-455,0,-692,-321,-692,-777v0,-453,240,-777,692,-777v452,0,692,323,692,777xm327,-742v0,350,145,622,469,622v323,0,469,-274,469,-622v0,-348,-148,-618,-469,-618v-321,0,-469,271,-469,618","w":1591},"\u00d2":{"d":"1488,-740v0,454,-237,777,-692,777v-455,0,-692,-321,-692,-777v0,-453,240,-777,692,-777v452,0,692,323,692,777xm327,-742v0,350,145,622,469,622v323,0,469,-274,469,-622v0,-348,-148,-618,-469,-618v-321,0,-469,271,-469,618xm796,-1604r-271,-296r222,0r222,296r-173,0","w":1591},"\u00da":{"d":"734,-120v252,0,323,-131,323,-419r0,-941r184,0r0,938v1,296,-62,412,-227,516v-139,87,-459,80,-597,-2v-171,-102,-239,-231,-238,-520r0,-932r210,0r0,934v-2,292,92,426,345,426xm536,-1604r222,-296r222,0r-271,296r-173,0","w":1419},"\u00db":{"d":"820,-1900r222,296r-173,0r-160,-197r-160,197r-173,0r222,-296r222,0xm734,-120v252,0,323,-131,323,-419r0,-941r184,0r0,938v1,296,-62,412,-227,516v-139,87,-459,80,-597,-2v-171,-102,-239,-231,-238,-520r0,-932r210,0r0,934v-2,292,92,426,345,426","w":1419},"\u00d9":{"d":"734,-120v252,0,323,-131,323,-419r0,-941r184,0r0,938v1,296,-62,412,-227,516v-139,87,-459,80,-597,-2v-171,-102,-239,-231,-238,-520r0,-932r210,0r0,934v-2,292,92,426,345,426xm709,-1604r-271,-296r222,0r222,296r-173,0","w":1419},"\u0131":{"d":"197,0r0,-1086r197,0r0,1086r-197,0","w":592},"\u00b8":{"d":"819,253v0,129,-173,167,-309,120r0,-79v76,19,166,8,166,-61v0,-50,-41,-81,-124,-93r87,-140r91,-1r-68,108v105,25,157,74,157,146","w":1258},"\u0160":{"d":"464,-1604r-222,-296r173,0r160,197r160,-197r173,0r-222,296r-222,0xm482,37v-164,0,-212,-19,-382,-65r0,-208v185,81,232,106,412,116v208,12,339,-193,236,-371v-31,-54,-202,-155,-296,-208v-136,-77,-227,-148,-274,-212v-88,-118,-92,-282,-14,-410v74,-120,191,-197,384,-196v114,0,234,19,361,57r0,192v-173,-63,-194,-84,-349,-92v-180,-9,-310,151,-222,302v63,109,202,159,319,229v136,81,230,149,275,214v114,165,82,392,-62,525v-90,83,-217,127,-388,127","w":1103},"\u0161":{"d":"411,-1283r-222,-296r173,0r160,197r160,-197r173,0r-222,296r-222,0xm887,-302v0,213,-180,325,-402,327v-90,0,-199,-21,-328,-63r0,-181v129,64,241,96,336,96v136,0,250,-124,169,-245v-33,-49,-169,-99,-244,-132v-148,-65,-255,-129,-255,-305v0,-194,154,-305,376,-305v67,0,180,15,266,33r0,164v-110,-33,-198,-49,-263,-49v-142,0,-241,113,-157,217v34,42,141,83,207,111v127,54,208,107,243,160v35,53,52,110,52,172","w":1044},"\u00a6":{"d":"197,296r0,-740r148,0r0,740r-148,0xm197,-839r0,-740r148,0r0,740r-148,0","w":543},"\u00d0":{"d":"191,0r0,-679r-222,0r0,-157r222,0r0,-644v316,6,734,-30,924,82v190,111,317,324,315,623v-2,302,-117,541,-310,669v-105,69,-249,106,-434,106r-495,0xm401,-157v207,-1,467,7,583,-67v198,-126,290,-539,172,-816v-91,-212,-227,-286,-582,-283r-173,0r0,487r333,0r0,157r-333,0r0,522","w":1534},"\u00f0":{"d":"109,-538v0,-318,186,-544,496,-550v41,0,87,7,137,21v-60,-96,-94,-130,-188,-207r-242,162r-81,-121r188,-129v-91,-46,-194,-69,-309,-69r0,-148v182,0,338,37,467,112r169,-114r85,123r-124,81v225,166,409,444,415,800v5,333,-190,604,-506,602v-323,-3,-507,-237,-507,-563xm319,-537v1,225,87,414,301,414v201,0,303,-181,303,-423v0,-247,-89,-392,-298,-397v-213,-5,-307,182,-306,406","w":1234},"\u00dd":{"d":"511,0r0,-618r-494,-862r240,0r384,668r414,-668r195,0r-529,858r0,622r-210,0xm461,-1604r222,-296r222,0r-271,296r-173,0","w":1276},"\u00fd":{"d":"260,395r176,-395r-420,-1086r213,0r311,818r332,-818r186,0r-593,1481r-205,0xm364,-1283r222,-296r222,0r-271,296r-173,0","w":1070},"\u00de":{"d":"1096,-799v1,380,-297,520,-697,504r0,295r-208,0r0,-1480r208,0r0,293v168,-1,412,-2,501,42v121,59,197,169,196,346xm508,-449v239,7,367,-125,367,-334v0,-111,-45,-172,-123,-214v-58,-31,-234,-33,-353,-32r0,580r109,0","w":1132},"\u00fe":{"d":"714,25v-158,-3,-240,-52,-320,-148r0,518r-197,0r0,-1777r197,0r0,500v72,-135,177,-226,363,-228v282,-3,421,240,421,534v0,315,-163,606,-464,601xm716,-938v-146,0,-236,83,-322,179r0,500v111,93,142,136,290,136v211,0,284,-208,284,-433v-1,-209,-61,-382,-252,-382","w":1289},"\u00d7":{"d":"105,-159r437,-433r-437,-428r103,-115r440,440r439,-440r104,107r-438,436r438,438r-102,105r-441,-436r-439,436"},"\u00b9":{"d":"346,-740r0,-629r-136,0r0,-111r308,-25r0,765r-172,0","w":864},"\u00b2":{"d":"136,-1470v231,-82,605,-80,605,166v0,50,-18,95,-47,138v-32,48,-168,128,-263,177v-64,33,-108,72,-132,113r454,0r0,136r-617,0r0,-136v74,-160,294,-214,398,-342v17,-21,22,-47,22,-72v-3,-86,-72,-110,-171,-110v-77,0,-160,21,-249,64r0,-134","w":864},"\u00b3":{"d":"746,-933v0,132,-139,218,-306,218v-95,0,-190,-13,-286,-40r0,-142v103,39,188,58,255,58v79,0,150,-37,152,-106v0,-37,-20,-65,-57,-91v-41,-29,-144,-39,-240,-37r0,-124v142,1,297,-1,297,-115v0,-61,-64,-82,-129,-82v-82,0,-175,19,-278,58r0,-136v102,-31,199,-46,292,-46v163,0,294,54,294,184v0,124,-111,168,-236,200v142,15,242,77,242,201","w":864},"\u00bd":{"d":"222,-740r0,-629r-136,0r0,-111r309,-25r0,765r-173,0xm925,-729v229,-82,605,-81,605,166v0,49,-18,93,-46,136v-31,47,-169,129,-264,178v-64,33,-107,72,-131,113r453,0r0,136r-617,0r0,-136v74,-160,293,-214,398,-342v17,-20,22,-46,22,-72v-3,-85,-72,-110,-170,-110v-79,0,-162,21,-250,64r0,-133xm37,37r1098,-1554r179,0r-1085,1554r-192,0","w":1641},"\u00bc":{"d":"235,-740r0,-629r-136,0r0,-111r308,-25r0,765r-172,0xm1222,0r0,-197r-370,0r0,-155r351,-401r191,0r0,432r124,0r0,124r-124,0r0,197r-172,0xm989,-321r233,0r0,-266xm99,36r1091,-1553r192,0r-1091,1554","w":1641},"\u00be":{"d":"715,-933v0,132,-139,218,-306,218v-95,0,-190,-13,-286,-40r0,-142v103,39,188,58,255,58v79,0,150,-37,152,-106v0,-37,-19,-65,-56,-91v-41,-29,-145,-39,-241,-37r0,-124v142,1,297,-1,297,-115v0,-61,-64,-82,-129,-82v-82,0,-175,19,-278,58r0,-136v102,-31,199,-46,292,-46v163,0,294,54,294,184v0,124,-111,168,-236,200v142,15,242,77,242,201xm1369,0r0,-197r-370,0r0,-155r352,-401r191,0r0,432r123,0r0,124r-123,0r0,197r-173,0xm1136,-321r233,0r0,-266xm283,36r1092,-1553r191,0r-1091,1554","w":1789},"\u00ad":{"d":"111,-543r0,-148r444,0r0,148r-444,0","w":666},"\u00a4":{"d":"647,-296v-112,0,-194,-38,-267,-90r-195,195r-87,-87r195,-195v-120,-154,-120,-381,0,-534r-195,-196r87,-87r195,195v74,-52,155,-89,267,-89v111,0,195,37,267,89r195,-195r88,87r-195,196v119,154,119,381,0,534r195,195r-88,87r-195,-195v-72,53,-155,90,-267,90xm351,-740v0,170,119,296,296,296v177,0,296,-126,296,-296v0,-171,-120,-296,-296,-296v-176,0,-296,125,-296,296","w":1296}}});